Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



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

"If it's not loud, it doesn't work!" -- Blank Reg, from "Max Headroom"

Working...