BASIC


FOR..NEXT loop

Code:

Code:
FOR I = 1 TO 10
PRINT I
NEXT I END
REPEAT..UNTIL loop

Code:
I=0
REPEAT
PRINT I I=I+1
UNTIL I>=11 END