RosettaCodeData/Task/Hello-world-Line-printer/Ol/hello-world-line-printer.ol

5 lines
99 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(define p (open-output-file "/dev/lp0"))
(when p
(print-to p "Hello world!")
(close-port p))