To declare a variable at the begining of the program:
var vname;
Declaring is not necessary, variables can be created on the fly using:
vname := EXPRESSION;
/!\ The name of a variable should respect: [a-z][a-zA-Z]*[0-9]*