RosettaCodeData/Task/Hello-world-Text/Creative-Basic/hello-world-text.basic
2023-07-01 13:44:08 -04: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