Module END
basic::__Chapter_2
END
Immediately and unconditionally stop running the program and return to a BASIC command prompt.
Variables are left intact for inspection. END at the end of a program is optional.
10 PRINT "HELLO" 20 END 30 PRINT "THIS DOES NOT PRINT" RUN HELLO