One think i really like in Groovy, it's its concept of
Builder.
It allows to simply create tree of objects like XML trees
using a concise syntax.
An HTML tree in Groovy is defined like that
html {
head {
title "hello groovy builder"
}
}
JavaFX uses a quite
similar syntax
but the syntax is built-in.
The beauty of the groovy beast is that the builder syntax...