import JSON "mo:json/JSON";
import Debug "mo:base/Debug";
let obj : JSON.JSON = #Object([]);
Debug.print(JSON.show(obj));
// {}
Debug.print(JSON.show(#Object([("username", #String("di-wu"))])));
// {"username": "di-wu"}
Debug.print(JSON.show(#Object([
("name", #Object([
("firstName", #String("quint"))
])),
("username", #String("di-wu"))
])));
// {"name": {"firstName": "quint"}, "username": "di-wu"}
-
Notifications
You must be signed in to change notification settings - Fork 11
JSON for Motoko
License
aviate-labs/json.mo
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
JSON for Motoko
Resources
License
Code of conduct
Security policy
Stars
Watchers
Forks
Packages 0
No packages published