diff options
Diffstat (limited to 'test/functions.tm')
| -rw-r--r-- | test/functions.tm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functions.tm b/test/functions.tm index 22d950d4..17ca1e85 100644 --- a/test/functions.tm +++ b/test/functions.tm @@ -1,10 +1,10 @@ -func add(x:Int, y:Int -> Int): +func add(x:Int, y:Int -> Int) return x + y -func cached_heap(x:Int->@Int; cached): +func cached_heap(x:Int->@Int; cached) return @x -func main(): +func main() >> add(3, 5) = 8 |
