Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Groovy vs Groovy++ [closed]

I just read some few articles about Groovy++ and seems to be a huge improvement of Groovy itself.

Does anyone know how to make use of Groovy++ in Grails and with IntelliJ? I can see the latest version of IntelliJ supports Groovy and Groovy++

like image 479
Dasma Avatar asked Dec 15 '22 04:12

Dasma


1 Answers

Development of Groovy++ stopped a few years ago, and many of the interesting features it had were reimplemented in Groovy, including @TypeChecked and @CompileStatic.

Groovy is now a huge improvement over older versions. Each release gets faster and adds more features, and with static compilation we get near-Java performance with a far less ceremonious Java alternative.

Traits aren't really new at this point, they were added to v2.3 two years ago, but they're really getting popular and have added another big feature to the language. They're almost as powerful as AST transforms, but far easier to work with.

Groovy in Action, 2nd edition was published recently and it's huge, filling in a lot of documentation gaps. It's by far the most recent and most comprehensive Groovy reference.

like image 168
Burt Beckwith Avatar answered Dec 24 '22 16:12

Burt Beckwith