So I've heard that Strings are basically just arrays referencing ASCII values of characters. I tested this, as I remembered it from C, and it did indeed return "H" when saying PRINT "HELLO WORLD"[0]. But is there anything that you can do with this knowledge, like setting maybe arrays to strings like DIM HI$[5]:HI$="HELLO" or something? Or do you have to do it bit per bit like
DIM HELLO$[0] HI$="HELLO" FOR I=O TO LEN(HI)-1 HELLO$[I]=HI$[I] NEXTOr would that not even work? I'd just want a base to work off of.