Created
September 30, 2018 19:33
-
-
Save iby/d153c8d36d25942a1d149b2a91072a0f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let fooOne: Foo = Foo() | |
let fooTwo: Foo = Foo() | |
fooOne.reactive.signal.bar.observeValues({ Swift.print($0) }) | |
fooOne.reactive.bind.bar <~ fooTwo.reactive.signal.bar | |
fooOne.bar = "Such b-a-r!" | |
fooTwo.bar = "Very BAR!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment