07-31-2015, 03:52 AM
Try running this program:
It was supposed to print 11, but it will print 10 instead.
Code:
DIM h AS UBYTE
LET h=10
IF h=12 THEN
ELSEIF h=10 THEN
LET h=h+1
END IF
PRINT h
It was supposed to print 11, but it will print 10 instead.