ref: ce87687bbc9586ae0ecb1ea646596a76410ef568
dir: /Exceptions/exceptions.b/
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;
}