ref: 82a3f55c5fb7b9f7a82449e4eb943c535ec3e491
dir: /opt/misc/appl/hello.b/
implement Hello;
include "sys.m";
sys: Sys;
include "draw.m";
Hello: module {
init:
fn(ctxt: ref Draw->Context, argv: list of string);
};
init(ctxt : ref Draw->Context, argv: list of string) {
sys = load Sys Sys->PATH;
sys->print("Hello World!\n");
}