Skip to content

Instantly share code, notes, and snippets.

@tilltue
Created February 11, 2021 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tilltue/fcbf82f91983a07ec1b38efc71217409 to your computer and use it in GitHub Desktop.
Save tilltue/fcbf82f91983a07ec1b38efc71217409 to your computer and use it in GitHub Desktop.
let empty = Empty<String, Never>()
_ = empty.sink {
print($0)
} receiveValue: {
print($0)
}
// 결과 : finished
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment