echo ?Output in console should be like: {"key":"value"}
Scripts
Echo JSON string
Echo JSON string
1

echo ?
echolocal JSON = require("JSON")
local data = {
	hello = "World",
	another = "World",
	MikuAuahDark = "Test"
}
print(JSON:encode(data))
{"hello":"World","another":"World","MikuAuahDark":"Test"}
1
