Skip to content

Instantly share code, notes, and snippets.

@saru2020
Last active August 20, 2019 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save saru2020/77f5864cbe82b575b178511451678ce7 to your computer and use it in GitHub Desktop.
Save saru2020/77f5864cbe82b575b178511451678ce7 to your computer and use it in GitHub Desktop.
let heyThereSequence = Observable.of("Hey there!")
let subscription = heyThereSequence.subscribe { event in
print(event)
}
Result:
next("Hey there!")
completed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment