ref: 31832c5f1b673bc7f8e908b1a3e4de24367fb652
dir: /HelloWorld/hello.b/
implement Hello; include "sys.m"; include "draw.m"; Hello: module { init: fn(nil: ref Draw->Context, nil: list of string); }; init(nil: ref Draw->Context, nil: list of string) { sys := load Sys Sys->PATH; sys->print("Hello World! ☺\n"); exit; }