# json2lua Convert JSON to Lua table
## Example: ```rust use json2lua::parse; let json = r#"{ "string": "abc", "int": 123, "bool": true, "null": null }"#; let lua = parse(json).unwrap(); // Output: // { // ["string"] = "abc", // ["int"] = 123, // ["bool"] = true, // ["null"] = nil, // } ```