2. Variables
A variable is like a labeled box that stores something.
A variable is like a labeled box that stores something. Make the box with the keyword 'make', then use its name anywhere. Try changing what is inside!
Code
make name = "Aksa"
make age = 8
print(name, "is", age, "years old")Copy this code into the Aksa editor, run it, then change something and run it again!