summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc9
1 files changed, 6 insertions, 3 deletions
diff --git a/test.toc b/test.toc
index fffb4e4..b1aefcf 100644
--- a/test.toc
+++ b/test.toc
@@ -1,3 +1,6 @@
+io ::= nms {
+ #include "std/io.toc";
+};
n ::= nms {
x := 1;
@@ -10,7 +13,7 @@ main ::= fn() {
b := n.counter();
n.counter();
c := n.counter();
- // puti(a);
- // puti(b);
- // puti(c);
+ io.puti(a);
+ io.puti(b);
+ io.puti(c);
};