Variables

Variables store data that you will use later.

Create and use#

You don’t need to declare the variable type, just assign the value.

name = "Ismael"
age = 25
height = 1.70
active = true

print name
print "Age: $age"
Dynamism

Variables in DinoCode are dynamic, which means you can reassign them different types of values during program execution.

variable = 10
variable = "Now I am a string"
variable = true