Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Agarunov/fb5d2fd0700df9b7f0e2d2995f56cffe to your computer and use it in GitHub Desktop.
Save Agarunov/fb5d2fd0700df9b7f0e2d2995f56cffe to your computer and use it in GitHub Desktop.
struct Pet {
let name: String
}
let pets = [Pet(name: "Beethoven")]
let encoder = JSONEncoder()
try! encoder.encode(pets)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment