RosettaCodeData/Task/Hello-world-Line-printer/FreeBASIC/hello-world-line-printer.freebasic
2016-12-05 23:44:36 +01: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