RosettaCodeData/Task/Hello-world-Text/Creative-Basic/hello-world-text.basic

14 lines
212 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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