Just for reference: There are 2 kinds of if statements: single-line and multi-line. Single-line if statements look like this: IF I>3 THEN:PRINT "Hello, world!": ELSE:PRINT "No" Multi-line if statements look like this: IF I>3 THEN PRINT "Hello, world!" ELSE PRINT "No" ENDIF (note the ENDIF) You can also use ENDIF in single-line if statements while nesting them. (continued)