summaryrefslogtreecommitdiff
path: root/Lists/lists.b
diff options
context:
space:
mode:
authorseh <henesy.dev@gmail.com>2019-03-18 16:36:39 -0500
committerseh <henesy.dev@gmail.com>2019-03-18 16:36:39 -0500
commit0283ccf588a5243b2a992d3d726c2f1344c5438a (patch)
tree72c7fd3b20f147299c52aebfc8829adcf4b158cc /Lists/lists.b
parent5cd0b7d8139f0cd5f4af1f9f3b82fe2cd3f37288 (diff)
stdlib modules have -M suffix for dir ;; frame for lists example
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;
+}