END
Stop execution of the program.
> 10 i = 0
> 20 i = i + 1
> 30 PRINT i
> 40 IF i == 5 THEN END ELSE GOTO 20
> RUN
1
2
3
4
5
OK