I might have some of the terms mixed up, these are all the commands I remember: Print: Used to show text on screen, in code it should be used as - print "Text" Assigning a value to a variable: Should be shown as Exemple=3 or Exemple$="3" - The $ shows that the variable is text. Without it, the variable can only equal a number. You can print a variable with - print Exemple or print Exemple$