RosettaCodeData/Task/Hello-world-Line-printer/M2000-Interpreter/hello-world-line-printer-2.m2000
2023-07-01 13:44:08 -04:00

6 lines
163 B
Text

Try ok {
Open "Lpt1" For OutPut As N '' prints to Lpt1 if exist a printer
Print #N, "Hello World!"
Close #N
}
If Not Ok Then Print "Can't Print"