shithub: limbobyexample

ref: a609ffb20226eba3d4dc628d7b4d284eddd1c114
dir: /HelloWorld/hello.b/

View raw version
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;
}