131.1 Declaring and using variables
Learn how to define variables, store values in memory, and follow best practices for naming and usage.
What is a variable?
Declaring a variable
SET name TO "Myles"
SET age TO 16
SET is_student TO TRUEname = "Myles"
age = 16
is_student = TrueNaming rules and conventions
Changing values
Using multiple variables
Memory and data types
Key concepts
Last updated
Was this helpful?