aboutsummaryrefslogtreecommitdiff
path: root/test/integers.tm
diff options
context:
space:
mode:
Diffstat (limited to 'test/integers.tm')
-rw-r--r--test/integers.tm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integers.tm b/test/integers.tm
index 9b573aac..94ab8ac6 100644
--- a/test/integers.tm
+++ b/test/integers.tm
@@ -1,4 +1,4 @@
-func main()
+func main():
>> 2 + 3
= 5
@@ -27,7 +27,7 @@ func main()
= 1
nums := ""
- for x in 5
+ for x in 5:
nums ++= "{x},"
>> nums
= "1,2,3,4,5,"