golo-lang
golo-lang copied to clipboard
Call java SAM and FI as regular functions
It would be nice to be able to call java functions (Single Abstract Method instances and FunctionalInterface instances) with the golo syntax; for instance:
let comp = java.util.Comparator.reverseOrder()
comp("foo", "bar") # instead of comp: compare("foo", "bar")