I've been away from PBP for a couple of years, and a lot of 'STR' stuff is new to me. I always see STR arrays being loaded from the serial port. Here's my dumb question...

Is there a way to quickly load a STR array manually, i.e.

ARRY var BYTE[10]

ARRY = "Testing"

or something similar, or must we do it like:

ARRY[0] = "T"
ARRY[1] = "e"
etc.
etc.