shithub: limbobyexample

ref: 87845d69835cc74cb4c7b7d16869b1e5ee481908
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;
}