Skip to content

Instantly share code, notes, and snippets.

@mecid
Last active June 27, 2019 11:19
Show Gist options
  • Save mecid/4c278b8b610eb588982121ffecb2d7b4 to your computer and use it in GitHub Desktop.
Save mecid/4c278b8b610eb588982121ffecb2d7b4 to your computer and use it in GitHub Desktop.
let subject = CurrentValueSubject<String, Never>("Hello")
subject.sink { value in print(value) }
subject.send("World")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment