RosettaCodeData/Task/Hello-world-Line-printer/Seed7/hello-world-line-printer.seed7
2015-02-20 00:35:01 -05:00

10 lines
191 B
Text

$ include "seed7_05.s7i";
const proc: main is func
local
var file: lp is STD_NULL;
begin
lp := open("/dev/lp0", "w");
writeln(lp, "Hello world!");
close(lp);
end func;