- Updated examples for new version

This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-24 14:54:00 +02:00
parent a25f85edc3
commit 8341d17638
2 changed files with 14 additions and 3 deletions

View File

@ -10,6 +10,10 @@ struct Person
public int age;
public bool isMale;
public JSONValue obj;
public int[] list;
public bool[] list2;
public float[] list3;
public double[] list4;
}
```
@ -22,6 +26,10 @@ Now, let's say we were given the following JSON:
"age": 23,
"obj" : {"bruh":1},
"isMale": true,
"list": [1,2,3],
"list2": [true, false],
"list3": [1.5, 1.4],
"list4": [1.5, 1.4]
}
```
@ -35,7 +43,10 @@ JSONValue json = parseJSON(`{
"age": 23,
"obj" : {"bruh":1},
"isMale": true,
"list": [1,2,3]
"list": [1,2,3],
"list2": [true, false],
"list3": [1.5, 1.4],
"list4": [1.5, 1.4]
}
`);
@ -52,5 +63,5 @@ writeln(person):
Which will output:
```
Person("Tristan", "Kildaire", 23, true, {"bruh":1})
Person("Tristan", "Kildaire", 23, true, {"bruh":1}, [1, 2, 3], [true, false], [1.5, 1.4], [1.5, 1.4])
```

View File

@ -45,6 +45,6 @@ This returns the following JSON:
},
"firstname": "Tristan",
"lastname": "Kildaire",
"list": "[\"1\", \"2\", \"3\"]"
"list": ["1", "2", "3"]
}
```