Skip to content

Instantly share code, notes, and snippets.

@ivangodfather
Created September 2, 2020 07:59
Show Gist options
  • Save ivangodfather/4ef5be8914f48df09b82ecb23fd2da90 to your computer and use it in GitHub Desktop.
Save ivangodfather/4ef5be8914f48df09b82ecb23fd2da90 to your computer and use it in GitHub Desktop.
func randomNum() -> AnyPublisher<Int, Never> {
return AnyPublisher<Int, Never> { seed in
seed.success(Int.random(in: 1...10))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment