・By using ELSEIF instead of ELSE, it is possible to make a condition judgment after the condition is not satisfied.
・Note that the contents of the following code description change between ELSEIF and ELSE IF. The two codes in the example have the same meaning.
IF A==1 THEN PRINT "Congratulations":BEEP 0 ELSEIF A==2 THEN PRINT "Too bad" ELSE PRINT "So-so" ENDIF IF A==1 THEN PRINT "Congratulations":BEEP 0 ELSE IF A==2 THEN PRINT "Too bad" ELSE PRINT "So-so" ENDIF ' Required for ELSE IF ENDIF