diff options
Diffstat (limited to 'test.toc')
-rw-r--r-- | test.toc | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -1,8 +1,12 @@ main @= fn() { - y := { - x := 5; - z := y; - z - }; +/* + f := main; + f(); + main(); +*/ + N @= { + foo : [N]int; + foo[0] + }; }; |