diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 16:28:57 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 16:28:57 -0400 |
| commit | fd74479a2bf2e4ccc35d1c2fa206de8f28be1e54 (patch) | |
| tree | 0cdf5c4659264b612b5f3fbb4ce6a3b11dd736f5 /test/tables.tm | |
| parent | 92185a002a2e8b669add454a945c0ecdc0904993 (diff) | |
Deprecate optional '?' postfix operator
Diffstat (limited to 'test/tables.tm')
| -rw-r--r-- | test/tables.tm | 10 |
1 files changed, 5 insertions, 5 deletions
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 |
