Hello everyone,
I have been looking at Yabasic for a few hours today and it seems interesting, I have come across data in the manual and thought I'd give it ago. Here is what I have:
Label test
Read Name$, Age
Data "Katogoon", 19
Data "John", 25
Data "Smith", 63
As you can see I am storing names and ages. What I am trying to do is figure out how I can print Johns data on screen like so:
Name$ = "John"
Age = 25
Print Name$, " is ", Age, " years old."
Without the use of Variables though. (I think thats the correct term).