RosettaCodeData/Task/Hello-world-Text/Limbo/hello-world-text.limbo
2015-11-18 06:14:39 +00:00

14 lines
215 B
Text

implement Command;
include "sys.m";
sys: Sys;
include "draw.m";
include "sh.m";
init(nil: ref Draw->Context, nil: list of string)
{
sys = load Sys Sys->PATH;
sys->print("Hello world!\n");
}