diff --git a/l/limbo.b b/l/limbo.b new file mode 100644 index 00000000..279cbac6 --- /dev/null +++ b/l/limbo.b @@ -0,0 +1,16 @@ +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"); +}