Details
Description
I would love to see Groovy support right-side unless / if expressions like in Python or Ruby as they make the code often more readable.
Here is a small example:
doSomething() unless (x > 10) (...) triggerSomethingNasty() if (x < 10)