shithub: limbobyexample

ref: ce87687bbc9586ae0ecb1ea646596a76410ef568
dir: /Exceptions/exceptions.b/

View raw version
implement Exceptions;

include "sys.m";
include "draw.m";

sys: Sys;
print: import sys;

Exceptions: 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;

	

	raise "going down!";

	exit;
}