RosettaCodeData/Task/Hello-world-Text/IWBASIC/hello-world-text.iwbasic
2017-09-25 22:28:19 +02:00

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