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

Lawrence Radiation Laboratory keeps all its data in an old gray trunk.

Working...