Module:JSON/sandbox

From Guild of Archivists
< Module:JSON
Revision as of 07:26, 30 October 2015 by Alahmnat (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:JSON/sandbox/doc

-- For unit tests, see [[Module:Bananas/testcases]]
local json = require('Module:JSON')
local p = {}
local test = {}
 
function p.hello()
	test = json.decode('{\'Hello\':\'测试\'}');
 
	return test['Hello']
end
 
return p