Ah, right, just a little thing. In the "Combining ...
# tornadofx
r
Ah, right, just a little thing. In the "Combining Observables" chapter, The first Kotlin demo under "Merging" uses
.subscribe { System.out.println("You pressed one of the buttons!") }
when it could just use
.subscribe { println("You pressed one of the buttons!") }