Ruby
The Top 10 Reasons The Ruby Programming Language Sucks
Courtesy:-- Presentations from vishnu.
If you are bored with your same old programming language, then help yourself with a little "Groovy" touch.
Anthillpro is a continuous integration server from Urbancode.
Ruby needs no special introduction in the world of object oriented programming.
Why does finally have to have braces?
I can do this:
if(condition) statement;
and even this:
if(condition) statement;
else statements
And yet I cannot do this:
try {
statement;
} finally statement;
I am forced to do this:
try {
statement;
} finally {
statement;
}
Why Java why? I see why Rubyist's complain of too many braces :)
PS.