From fd74479a2bf2e4ccc35d1c2fa206de8f28be1e54 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 16:28:57 -0400 Subject: Deprecate optional '?' postfix operator --- test/reductions.tm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/reductions.tm') 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) -- cgit v1.2.3