Created
June 4, 2020 09:03
-
-
Save adriacidre/39be02eb459962314b2f21f40bcc5531 to your computer and use it in GitHub Desktop.
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
jcart, _ := json.MarshalIndent(cart, "", "\t") | |
fmt.Println(string(jcart)) | |
/* | |
{ | |
"account_number": 1, | |
"fruits": [ | |
"apple", | |
"peach", | |
"pear" | |
] | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment