Lesson 1: Variables + Printing
Store values and show output.
' Numbers
age = 21
score = 10 + 5
' Strings
name$ = "Ada"
PRINT "Name: "; name$
PRINT "Age: "; age
PRINT "Score: "; score
- Numbers are stored like age = 21
- Strings often use $ (e.g., name$)
- Use PRINT to output. Semicolons combine parts on one line.