Skip to content

Instantly share code, notes, and snippets.

@cipolleschi
Last active June 6, 2020 13:25
Show Gist options
  • Select an option

  • Save cipolleschi/2eafdc4db67edcd65ea4a6aef8c9d66d to your computer and use it in GitHub Desktop.

Select an option

Save cipolleschi/2eafdc4db67edcd65ea4a6aef8c9d66d to your computer and use it in GitHub Desktop.
self.downloadUser() { user in
self.downloadFavouriteMovies(for: user) { movies in
self.downloadRatings(for: movies) { ratings in
self.downloadFriends(for: users) { friends in
self.downloadMovies(for: friends] { friendMovies in
self.presentProfile(
for: user,
movies: movies,
ratings: ratings,
friends: friends,
movies: movies
)
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment