# 002: Variables & Values # Storing and using data name = "Alex" age = 28 active = true show "Name: {name}" show "Age: {age}" show "Active: {active}"