|
|
|
|
|
by steveklabnik
6036 days ago
|
|
It's more about the reading than the writing. All of the extra words interfere with what's actually going on. Even in this most minimal of cases, there's so many extra things to read that it obscures the meaning. Also, have you seen those studies that show that everyone has a number n, and every n lines, you make an error? If you're writing 3n lines in Java for every n lines you write in $LANGUAGE, you're making 3 times the errors. |
|
Try and make an 'error' in the phrase 'public static void'. See how well it compiles if you mistype 'public' as 'pubic'.
If you're not able to read the code well, then that's one thing (Learn to read code better). But don't spread the misinformation about errors. And no. You're not writing 3 times as much code unless you're an idiot. LOC in Java is pretty much the same as LOC in python for example when written properly.