33
acz0903
4y

Java's System.out.println because it's too effing long to write!
And in general, all of Java because you need an MB of code just for Hello World.

Comments
  • 1
    Yeah... It basically made my debugging hours a nightmare.
  • 9
    Check if your IDE has the sout+tab shortcut, which autocompletes to System.out.println().
  • 3
  • 6
    Well you can statically import "out", and use it as "out.println()".

    I think that makes it pretty much same as using any other logging library.
  • 2
    sysout in Eclipse or sout in IntelliJ
  • 2
    Too long to write???? Spoken like a true noob! :D

    Do you also name your variables/classes/functions in as few characters as possible to make others lives harder (as well as your own a year down the line when you've forgotten what doStuffFn() does!)?

    It's clear and concise. It's nice being able to read code and just know what it does without having to have spend a year learning it.
  • 2
    @yowhatthefuck Love kotlin: same speed half the code.
  • 2
    @TedTrippin once you are used dart or kotlin, java code feels too bulky and long. Remember there is no performance compromise for kotlin at least.
  • 1
    @TedTrippin, clear and concise are printf("hello") or puts "hello".
Add Comment