Skip to content

Instantly share code, notes, and snippets.

@masliukivskyi
Created April 27, 2020 23:15
Show Gist options
  • Save masliukivskyi/7bfecb7972939382b9c3bbd00f811636 to your computer and use it in GitHub Desktop.
Save masliukivskyi/7bfecb7972939382b9c3bbd00f811636 to your computer and use it in GitHub Desktop.
Basics of Combine
let welcome = "Welcome”.publisher
welcome.sink { (value) in
print(value)
}
Output: W e l c o m e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment