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

Time is nature's way of making sure that everything doesn't happen at once. Space is nature's way of making sure that everything doesn't happen to you.

Working...