RosettaCodeData/Task/Hello-world-Line-printer/FreeBASIC/hello-world-line-printer.basic
2023-07-01 13:44:08 -04:00

5 lines
104 B
Text

' FB 1.05.0 Win64
Open Lpt "Lpt:" As #1 '' prints to default printer
Print #1, "Hello World!"
Close #1