aboutsummaryrefslogtreecommitdiff
path: root/test/corecursive_func.tm
diff options
context:
space:
mode:
Diffstat (limited to 'test/corecursive_func.tm')
-rw-r--r--test/corecursive_func.tm5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/corecursive_func.tm b/test/corecursive_func.tm
index 0ff92e53..22ffd627 100644
--- a/test/corecursive_func.tm
+++ b/test/corecursive_func.tm
@@ -10,5 +10,6 @@ func pong(x:Int)->[Text]
else
return ["pong: {x}"]
->> ping(3)
-= ["ping: 3", "pong: 2", "ping: 1", "pong: 0"]
+func main()
+ >> ping(3)
+ = ["ping: 3", "pong: 2", "ping: 1", "pong: 0"]