Skip to content

Instantly share code, notes, and snippets.

@farhan-syed
Last active June 10, 2018 00:08
Show Gist options
  • Save farhan-syed/8a2e63e7bdf4d4825d690e58cec38241 to your computer and use it in GitHub Desktop.
Save farhan-syed/8a2e63e7bdf4d4825d690e58cec38241 to your computer and use it in GitHub Desktop.
genericFetch(urlString: "https://jsonplaceholder.typicode.com/comments") { (comments: [Comment]) in
print(comments.forEach({print("\n postId: \($0.postId)\n id: \($0.id)\n name: \($0.name)\n email:\($0.email) body: \($0.body)\n\n")}))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment