Richie Bendall c8fc6cd6d3
Meta tweaks
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2021-03-15 16:18:40 +13:00

17 lines
256 B
Brainfuck

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