first version

This commit is contained in:
Jay
2020-06-05 10:11:45 +00:00
commit f8942f3d43
7 changed files with 482 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"strKey": "string value",
"intKey": 1000,
"boolKey": true,
"floatKey": 1.2345,
"strArr": ["arr1"],
"objKey": {
"name": "name"
},
"arrObj": [{"key": "val"}]
}
+13
View File
@@ -0,0 +1,13 @@
strKey = "string value"
intKey = 1000
boolKey = true
floatKey = 1.2345
strArr = [
"arr1"
]
[objKey]
name = "name"
[[arrObj]]
key = "val"
+11
View File
@@ -0,0 +1,11 @@
strKey: string value
intKey: 1000
boolKey: true
floatKey: 1.2345
strArr:
- arr1
objKey:
name: name
arrObj:
- key: val