RosettaCodeData/Task/Hello-world-Newline-omission/Commodore-BASIC/hello-world-newline-omission.basic
2023-07-01 13:44:08 -04:00

7 lines
307 B
Text

10 print chr$(14) : rem Switch to lower+uppercase character set
20 print "Goodbye, World!";
30 rem * If we end this program here, we will not see the effect because
40 rem BASIC will print 'READY' at a new line anyway.
50 rem * So, we just print additional message...
60 print "(End of the world)"
70 end