diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 16:34:23 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 16:34:23 -0400 |
| commit | 52e50e58c6674560056a4dcb787099d739284b02 (patch) | |
| tree | e814b9d779e523c042f938161aadd7dd589327cf /test/tables.tm | |
| parent | 6fda59fd5e57e9267d2ec0480d53b5f9b0546855 (diff) | |
Change Set syntax from {x} to |x|
Diffstat (limited to 'test/tables.tm')
| -rw-r--r-- | test/tables.tm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tables.tm b/test/tables.tm index a5f51520..41d041eb 100644 --- a/test/tables.tm +++ b/test/tables.tm @@ -99,8 +99,8 @@ func main(): >> ints : [{Int=Int}] = [{}, {0=0}, {99=99}, {1=1, 2=2, 3=3}, {1=1, 99=99, 3=3}, {1=1, 2=-99, 3=3}, {1=1, 99=-99, 3=4}].sorted() = [{}, {0=0}, {1=1, 2=-99, 3=3}, {1=1, 2=2, 3=3}, {1=1, 99=99, 3=3}, {1=1, 99=-99, 3=4}, {99=99}] - >> other_ints : [{Int}] = [{/}, {1}, {2}, {99}, {0, 3}, {1, 2}, {99}].sorted() - = [{/}, {0, 3}, {1}, {1, 2}, {2}, {99}, {99}] + >> other_ints : [|Int|] = [||, |1|, |2|, |99|, |0, 3|, |1, 2|, |99|].sorted() + = [||, |0, 3|, |1|, |1, 2|, |2|, |99|, |99|] do: # Default values: |
