From 68bedd3c23757a8576e77f38e38ddcf9ecd26d19 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 18:01:19 -0400 Subject: Use colons instead of '=' for tables (e.g. {1: 2}) --- test/serialization.tm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/serialization.tm') diff --git a/test/serialization.tm b/test/serialization.tm index 5653d1f9..b97b122f 100644 --- a/test/serialization.tm +++ b/test/serialization.tm @@ -42,9 +42,9 @@ func main() assert roundtrip[] == obj[] do - >> obj := {"A"=10, "B"=20; fallback={"C"=30}} + >> obj := {"A":10, "B":20; fallback={"C":30}} >> bytes := obj.serialized() - >> roundtrip := deserialize(bytes -> {Text=Int}) + >> roundtrip := deserialize(bytes -> {Text:Int}) assert roundtrip == obj assert roundtrip.fallback == obj.fallback -- cgit v1.2.3