diff options
Diffstat (limited to 'test.toc')
-rw-r--r-- | test.toc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3,6 +3,10 @@ // io.puts("Hello, world!"); // }; +foo ::= fn(bar :: int = #foreign "X") { + +}; + stdout :: &u8 = #foreign "stdout"; fwrite :: fn(&u8, u64, u64, &u8) = #foreign "fwrite"; @@ -13,4 +17,4 @@ puts ::= fn(x : []char) { main ::= fn() { puts("Hello, world!\n"); -};
\ No newline at end of file +}; |