Tagged Questions
10
votes
4answers
1k views
Why Groovy(Java)?
I am looking on a new language to pick up and found out about Groovy.
According to the website, the language is 'agile dynamic' language.
How is it Agile?
How shorter are the syntax compared to ...
17
votes
12answers
856 views
Commented short fancy code vs. uncommented longer easy-to-understand code - which is preferred?
Sometimes an algorithm can be written in two ways:
The short, fancy way; or
The longer, easy-to-understand way.
For example, here is a longer, easier way of copying a string source to dest in C:
...