diff options
-rw-r--r-- | lib/pure/json.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/pure/json.nim b/lib/pure/json.nim index 483804ed8..d310a6ed7 100644 --- a/lib/pure/json.nim +++ b/lib/pure/json.nim @@ -49,6 +49,10 @@ ## "age": herAge ## } ## ] +## +## var j2 = %* {"name": "Isaac", "books": ["Robot Dreams"]} +## j2["details"] = %* {"age":35, "pi":3.1415} +## echo j2 import hashes, tables, strutils, lexbase, streams, unicode, macros |