Added limbo

This commit is contained in:
Amorilia
2009-04-08 19:00:32 +08:00
committed by Mike Donaghy
parent 908477e1fc
commit 4ca1a402cf

16
l/limbo.b Normal file
View File

@@ -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");
}