1 2 3 4 5 6 7 8 9 10 11 12 13
extend("json") # 3) Some JSON documents to test. good = '{ "id": 7, "name": "Lava", "tags": ["repl", "rust"] }' bad = '{ id": "2", "name": "123", "extra": true }' slog( json:report(good) ) slog( json:report(bad) )