aboutsummaryrefslogtreecommitdiff
path: root/test/reductions.tm
diff options
context:
space:
mode:
Diffstat (limited to 'test/reductions.tm')
-rw-r--r--test/reductions.tm6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/reductions.tm b/test/reductions.tm
index 3ec2ef5e..15c3d454 100644
--- a/test/reductions.tm
+++ b/test/reductions.tm
@@ -2,7 +2,7 @@ struct Foo(x,y:Int)
func main()
>> (+: [10, 20, 30])
- = 60?
+ = 60
>> empty_ints : [Int]
>> (+: empty_ints)
@@ -15,10 +15,10 @@ func main()
= 0
>> (_max_: [3, 5, 2, 1, 4])
- = 5?
+ = 5
>> (_max_.abs(): [1, -10, 5])
- = -10?
+ = -10
>> (_max_: [Foo(0, 0), Foo(1, 0), Foo(0, 10)])!
= Foo(x=1, y=0)