RosettaCodeData/Task/Hello-world-Text/Limbo/hello-world-text.limbo

15 lines
215 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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;
2015-11-18 06:14:39 +00:00
sys->print("Hello world!\n");
2013-04-10 21:29:02 -07:00
}