Last active
June 10, 2018 00:08
-
-
Save farhan-syed/8a2e63e7bdf4d4825d690e58cec38241 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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