aboutsummaryrefslogtreecommitdiff
path: root/test/integers.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-04-28 14:58:55 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-04-28 14:58:55 -0400
commit3c0a8f0b899a343f43caf9c95147b2cf77a7b525 (patch)
treeb7193a8021ef9ab57c71319ecad797bf51849025 /test/integers.tm
parent5910998a19aab5dab2c761aea946cfbb09a37918 (diff)
Syntax tweak: use ':' for blocks
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,"