- Updated README example

This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-23 12:30:54 +02:00
parent 16babe6ab0
commit 6bc3507dfe
1 changed files with 13 additions and 2 deletions

View File

@ -72,6 +72,10 @@ struct Person
public int age;
public bool isMale;
public JSONValue obj;
public int[] list;
public bool[] list2;
public float[] list3;
public double[] list4;
}
```
@ -84,6 +88,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]
}
```
@ -97,7 +105,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]
}
`);
@ -114,7 +125,7 @@ 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])
```
## Installing