|
|
|
|
|
by haxscramper
1703 days ago
|
|
This way you can write json literals in the code, and it will look just like regular json. For serialization and deserialization stdlib uses `to/load/store` proc names. import std/json
echo %*{
"key1": "value",
"key2": 12,
}
|
|