summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-08-21 11:10:29 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-08-21 11:10:29 -0400
commitfcc247dbe0d442a3ad24ecda843ae9dcc8d56b77 (patch)
treedd4bea48593b244b9c056b7d6d8ff8f201c0ab7a /test.toc
parentf9719e6ae07d1b857db2c54545c38c20a9d1c14c (diff)
started function calls
still some bugs
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.toc b/test.toc
index 9dedea4..d53960d 100644
--- a/test.toc
+++ b/test.toc
@@ -1,5 +1,5 @@
main :- fn(){
- (fn(x: int, y: float) int {
+ 1+fn(x: int, y: float) int {
printf("Hello!\n");
- })(3, 7.3);
+ };
};