!read some data and print it out
READ firstName$, secondName$, age !looks for data
PRINT firstName$ ;" "; secondName$ ;" "; "is "; age; "years old.";" Right,"; firstName$;"?"
DATA "John","Smith", 21 !data to be read when needed
END