RosettaCodeData/Task/Hello-world-Text/Limbo/hello-world-text.limbo
2023-07-01 13:44:08 -04: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");
}