diff options
Diffstat (limited to 'test.toc')
-rw-r--r-- | test.toc | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -1,8 +1,5 @@ -main :- fn () { - bar := fn (x: int, y: int, z: float) float { - - foo :- fn () { - x:=7+y; - }; - }; -};
\ No newline at end of file +main :- fn(){ + (fn(x: int, y: float) int { + printf("Hello!\n"); + })(3, 7.3); +}; |