

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Still calibrating
click for more info
Not enough gems
Cost: 6 gems
1: HTTP Clients
incomplete
2: JSON
incomplete
3: JSON Review
incomplete
4: The Profane
incomplete
This lesson's interactive features are locked, please to keep using them
type parameters struct {
Name string `json:"name"`
Age int `json:"age"`
School struct {
Name string `json:"name"`
Location string `json:"location"`
} `json:"school"`
}
type parameters struct {
name string `json:"name"`
Age int `json:"age"`
}
type parameters struct {
Name string
Age int
}