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
|
|
|
}
|