Last active
June 4, 2020 08:43
-
-
Save adriacidre/f47ae589ad1c5f3a4d191aeec8b4b081 to your computer and use it in GitHub Desktop.
Cart example
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
type Cart struct { | |
Account int `json:"account_number"` | |
Fruits []string `json:"fruits"` | |
} | |
cart := &Cart{ | |
Account: 1, | |
Fruits: []string{"apple", "peach", "pear"}} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment