diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-01-12 16:49:58 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-01-12 16:49:58 -0500 |
| commit | 645d66e0de0f201404d9ad4b210f90c139a247ff (patch) | |
| tree | 08367c3631b928752cde94083bdfe2ae49db0b79 /test/serialization.tm | |
| parent | b025cf269d2e07e179be4a0e34d936862dc640c2 (diff) | |
Change table syntax to `{key=value}` and `{:K,V}`/`{K,V}`
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 a442d9e2..433caab3 100644 --- a/test/serialization.tm +++ b/test/serialization.tm @@ -57,9 +57,9 @@ func main(): = yes do: - >> obj := {"A":10, "B":20; fallback={"C":30}} + >> obj := {"A"=10, "B"=20; fallback={"C"=30}} >> bytes := obj:serialized() - >> deserialize(bytes -> {Text:Int}) == obj + >> deserialize(bytes -> {Text,Int}) == obj = yes do: |
