Skip to content

Instantly share code, notes, and snippets.

@robertmryan
Created October 7, 2024 18:16
Show Gist options
  • Save robertmryan/56473f746e2f0bc78bcc70237bd8aeb3 to your computer and use it in GitHub Desktop.
Save robertmryan/56473f746e2f0bc78bcc70237bd8aeb3 to your computer and use it in GitHub Desktop.
func dummyLoop() async throws {
print("inside dummy fcn")
for i in 0 ..< 10 {
print("Loop \(i)")
try await Task.sleep(for: .seconds(1))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment