aboutsummaryrefslogtreecommitdiff
path: root/test/optionals.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-06 16:34:23 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-06 16:34:23 -0400
commit52e50e58c6674560056a4dcb787099d739284b02 (patch)
treee814b9d779e523c042f938161aadd7dd589327cf /test/optionals.tm
parent6fda59fd5e57e9267d2ec0480d53b5f9b0546855 (diff)
Change Set syntax from {x} to |x|
Diffstat (limited to 'test/optionals.tm')
-rw-r--r--test/optionals.tm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/optionals.tm b/test/optionals.tm
index bf3e1633..40512557 100644
--- a/test/optionals.tm
+++ b/test/optionals.tm
@@ -245,8 +245,8 @@ func main():
= no
>> (5? == 5?)
= yes
- >> nones : {Int?} = {none, none}
- >> also_nones : {Int?} = {none}
+ >> nones : |Int?| = |none, none|
+ >> also_nones : |Int?| = |none|
>> nones == also_nones
>> [5?, none, none, 6?].sorted()
= [none, none, 5, 6]