Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror

Comment Re:No (Score 4, Insightful) 700

How about the people who claim it's tedious and sprawling*?

Simple example...

Java: BufferedReader in = new BufferedReader(new FileReader("foo.in"));
Python: in = open('foo.in')
Ruby: in = File.open('foo.in')
C++: ifstream in; in.open("foo.in");

To be fair, I'm no Java expert, but in my experience with it, I'd have to be masochistic to look at it all day...

Slashdot Top Deals

"Falling in love makes smoking pot all day look like the ultimate in restraint." -- Dave Sim, author of Cerebrus.

Working...