<@U25U0KPFT> <@U092308M7> instead of `numWords.bin...
# tornadofx
b
@carlw @orangy instead of
numWords.bind( Bindings.createIntegerBinding(Callable{ this.text.split(" ").size }, this.textProperty()) )
you can use
numWords.bind(integerBinding(this.textProperty()) { text.split(" ").size })
which I find to be a bit more easier on the eyes.