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/tables.tm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/tables.tm') diff --git a/test/tables.tm b/test/tables.tm index 587a02c8..66318f11 100644 --- a/test/tables.tm +++ b/test/tables.tm @@ -3,9 +3,9 @@ func main() = {"one"=1, "two"=2} >> t["one"] - = 1? + = 1 >> t["two"] - = 2? + = 2 >> t["???"] = none >> t["one"]! @@ -33,16 +33,16 @@ func main() = {"three"=3; fallback={"one"=1, "two"=2}} >> t2["one"] - = 1? + = 1 >> t2["three"] - = 3? + = 3 >> t2["???"] = none >> t2.length = 1 >> t2.fallback - = {"one"=1, "two"=2}? + = {"one"=1, "two"=2} t2_str := "" for k,v in t2 -- cgit v1.2.3