12 lines
228 B
Plaintext
12 lines
228 B
Plaintext
static box Main {
|
|
main(args) {
|
|
local json = "{\"kind\":\"Program\",\"statements\":[]}"
|
|
local doc = new JsonDocBox()
|
|
doc.parse(json)
|
|
local root = doc.root()
|
|
print(root.get("kind").str())
|
|
return 0
|
|
}
|
|
}
|
|
|