-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import json | ||
|
||
struct Json2 { | ||
inner []f64 | ||
} | ||
|
||
struct Json { | ||
Json2 | ||
test f64 | ||
} | ||
|
||
fn test_main() { | ||
str := '{"inner":[1,2,3,4,5],"test":1.2}' | ||
data := json.decode(Json, str) or { | ||
eprintln('Failed to decode json, error: ${err}') | ||
return | ||
} | ||
println(data) | ||
assert data.inner.len == 5 | ||
assert data.inner[0] == 1.0 | ||
assert data.inner[4] == 5.0 | ||
assert data.test == 1.2 | ||
|
||
data_json := json.encode(data) | ||
dump(data_json) | ||
assert data_json == str | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters