Hello,
I am starting to learn how to use JSON in Julia. I can create a json object, for sinatcne:
jsJ = JSON.json(Dict("name"=>["Paul", "Peter", "Jude", "Mark"],
"level"=>[1, 10, 20, 30],
"code"=>["Pa", "Pe", "Ju", "Mk"]))
# write to file
open("file.json", "w") do j
write(j, jsJ)
end
Is there a good tutorial on how to use JSON from here? such as reading the first elements of the dictionary (as to get: Paul, 1, Pa) and appending elements to the object?
There is, of course, the link to the official distribution; is there something more simplified?
Thank you