
Output in console should be like: {"key":"value"}
local JSON = require("JSON") local data = { 	hello = "World", 	another = "World", 	MikuAuahDark = "Test" } print(JSON:encode(data))
{"hello":"World","another":"World","MikuAuahDark":"Test"}