summaryrefslogtreecommitdiff
path: root/Data/BuiltIn/Libraries/json4lua/examples/example.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Data/BuiltIn/Libraries/json4lua/examples/example.lua')
-rw-r--r--Data/BuiltIn/Libraries/json4lua/examples/example.lua23
1 files changed, 23 insertions, 0 deletions
diff --git a/Data/BuiltIn/Libraries/json4lua/examples/example.lua b/Data/BuiltIn/Libraries/json4lua/examples/example.lua
new file mode 100644
index 0000000..36497da
--- /dev/null
+++ b/Data/BuiltIn/Libraries/json4lua/examples/example.lua
@@ -0,0 +1,23 @@
+--[[
+JSON4Lua example script.
+Demonstrates the simple functionality of the json module.
+]]--
+json = require('json')
+
+
+-- Object to JSON encode
+test = {
+ one='first',two='second',three={2,3,5}
+}
+
+jsonTest = json.encode(test)
+
+print('JSON encoded test is: ' .. jsonTest)
+
+-- Now JSON decode the json string
+result = json.decode(jsonTest)
+
+print ("The decoded table result:")
+table.foreach(result,print)
+print ("The decoded table result.three")
+table.foreach(result.three, print)