diff options
Diffstat (limited to 'test.toc')
-rw-r--r-- | test.toc | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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); }; |