diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 18:01:19 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 18:01:19 -0400 |
| commit | 68bedd3c23757a8576e77f38e38ddcf9ecd26d19 (patch) | |
| tree | 86ce1610143efc43453f50d3413925797601c48a /test/serialization.tm | |
| parent | 0815de981c683cac7dbac082ee14c11894089f31 (diff) | |
Use colons instead of '=' for tables (e.g. {1: 2})
Diffstat (limited to 'test/serialization.tm')
| -rw-r--r-- | test/serialization.tm | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
