diff --git a/limbo.b b/limbo.b new file mode 100644 index 00000000..29a5313b --- /dev/null +++ b/limbo.b @@ -0,0 +1,14 @@ +implement Hello; +include "sys.m"; + sys: Sys; +include "draw.m"; + +Hello: module { + init: fn(nil: ref Draw->Context, argv: list of string); +}; + +init(nil: ref Draw->Context, argv: list of string) +{ + sys = load Sys Sys->PATH; + sys->print("Hello World!\n"); +} \ No newline at end of file