A JSON parser made by implementing the content of this blog, made in python, in golang. For learning purposes.
func main() {
golang_map := from_string(`{"foo": 1, "bar":[1, "teste", 3, null, true, false, "true", "false", "null"]}`)
fmt.Println(golang_map)
fmt.Println(golang_map["bar"])
}map[bar:[1 teste 3 <nil> true false true false null] foo:1]
[1 teste 3 <nil> true false true false null]