Quote Originally Posted by picster View Post
Not sure, but I seem to recall having an issue with putting if/then/else/endif on the same line.

Picster
Adding a colon, the compiler treats the next line as a new line. For example:
Code:
IF Box = 4 THEN : GOSUB Square : ELSEIF Triangle = 3 THEN : LOW LED : ENDIF
Would be the same as:
Code:
IF Box = 4 THEN
GOSUB Square
ELSEIF Triangle = 3 THEN
LOW LED
ENDIF