RosettaCodeData/Task/Hello-world-Line-printer/FreeBASIC/hello-world-line-printer.freebasic

6 lines
104 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
' FB 1.05.0 Win64
Open Lpt "Lpt:" As #1 '' prints to default printer
Print #1, "Hello World!"
Close #1