Skip to content

Instantly share code, notes, and snippets.

@SebastianBoldt
Created January 30, 2022 10:34
Show Gist options
  • Save SebastianBoldt/bb939c1d2365755737f12df6afd359b3 to your computer and use it in GitHub Desktop.
Save SebastianBoldt/bb939c1d2365755737f12df6afd359b3 to your computer and use it in GitHub Desktop.
func fetchItems() async throws {
for try await item in getAsyncSequence() {
print("Received item: \(item)")
}
}
try? await fetchItems()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment