How can I use DATA, READ and RESOTRE?
Okay so with DATA you can store numbers and strings like: DATA "ABC" and DATA 123. And also DATA "ABC", 123. READ reads the data in order and saves it into a variable like: READ L$ and READ L. RESTORE can have data start getting read from a certain label like:
RESTORE @DATA1
READ L$
READ L
@DATA1
DATA "ABC", 123
I hope this helped.
You can also check the tutorial I created in the resources tab.