13 lines
212 B
Text
13 lines
212 B
Text
OPENCONSOLE
|
|
|
|
PRINT"Hello world!"
|
|
|
|
'This line could be left out.
|
|
PRINT:PRINT:PRINT"Press any key to end."
|
|
|
|
'Keep the console from closing right away so the text can be read.
|
|
DO:UNTIL INKEY$<>""
|
|
|
|
CLOSECONSOLE
|
|
|
|
END
|