aboutsummaryrefslogtreecommitdiff
path: root/test/reductions.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-05 01:08:12 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-05 01:08:12 -0400
commit00fd2b9e6705cf80e315c84b35feb6248305770b (patch)
tree1636a025d5ae4168251459015fef43be790e2ef6 /test/reductions.tm
parent316eff8b4f6c4f0c119360dfbb94aa0840a7e65a (diff)
Fix up tests
Diffstat (limited to 'test/reductions.tm')
-rw-r--r--test/reductions.tm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/reductions.tm b/test/reductions.tm
index 4f33bb20..f0618b21 100644
--- a/test/reductions.tm
+++ b/test/reductions.tm
@@ -6,7 +6,7 @@ func main():
>> empty_ints : [Int] = []
>> (+: empty_ints)
- = none : Int
+ = none
>> (+: [10, 20, 30]) or 0
= 60
@@ -38,7 +38,7 @@ func main():
= yes
>> (<=: empty_ints)
- = none : Bool
+ = none
>> (<=: [5, 4, 3, 2, 1])!
= no