summaryrefslogtreecommitdiff
path: root/Lists/lists.b
blob: 0837c8ad83b871e25027acb304dce08bf815920b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
implement Lists;

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

include "arg.m";

sys: Sys;
print: import sys;

Lists: module {
	init: fn(nil: ref Draw->Context, argv: list of string);
};

init(nil: ref Draw->Context, argv: list of string) {
	sys = load Sys Sys->PATH;

	

	exit;
}