ref: 50bc0b3fb51052b59bf8873dc7eaf68257ef91d1
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; }