rem REP4
rem A program to illustrate conditional repitition using
rem IF THEN and GOTO statements
            I = 1
        100 PRINT I
            I = I + 1
            IF I > 10 then 200
            GOTO 100
        200
