Hacker News new | ask | show | jobs
by 0xmohit 3654 days ago
> it's already hard to get good Java developer

Yes, after looking at code that reads

    int i = (STDIN);
when one intends to read a variable from standard input, I couldn't agree more.
2 comments

Having been doing Java on and off since 1996, I would protest that java.io.* is a freaking zoo that I still don't have memorized.

For all C's faults, I still miss the simplicity of "FILE (star)", created by either "fopen()" or "popen()"

Not that I would have wrote that... :-)

Maybe they were a perl developer where

  $i = <STDIN>;
works