RosettaCodeData/Task/Hello-world-Line-printer/OCaml/hello-world-line-printer.ocaml

5 lines
98 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
let () =
let oc = open_out "/dev/lp0" in
output_string oc "Hello world!\n";
close_out oc ;;