summaryrefslogtreecommitdiff
path: root/Lists/lists.b
diff options
context:
space:
mode:
Diffstat (limited to 'Lists/lists.b')
-rw-r--r--Lists/lists.b21
1 files changed, 21 insertions, 0 deletions
diff --git a/Lists/lists.b b/Lists/lists.b
new file mode 100644
index 0000000..0837c8a
--- /dev/null
+++ b/Lists/lists.b
@@ -0,0 +1,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;
+}