27

Python has influenced me in work as Python be like 😂😂😂

Comments
  • 16
    #as a python3 dev this is killing me

    print ("Hello World!")

    #much better. I can sleep in peace
  • 9
    Again... How can you compare 3 languages based on which requires less lines for a "Hello world"...

    I mean.. Cmon...
  • 12
    That C++ code shouldn't even compile.
  • 0
    @WasserEsser doesnt specify a namespace right?
  • 2
    Yeah that c++ code looks wrong, why is the return outside of the main function?
  • 0
    Also who doesn't end the line after a cout, what monstrous method is this.
  • 2
    Also MATLAB is as short, are we going to say Matlab beats Python because disp is shorter than print?
  • 2
    @kerith main has no return type, the namespace is missing, the return statement is outside of the function and misses a semicolon. Include <iostream.h> is also deprecated, it should be just <iostream>.
  • 0
    @WasserEsser omg, from all thr mistakes I focus on the least ovious one ,(maybe excluding the iclude). Dat return...
  • 1
    This is how you tell an inexperienced programmer
  • 0
    Should be # include <iostream> nowadays
  • 0
    I don't know why people include the class and function declaration in Java to prove that it takes more code. It's the same for every class with the exception of what you decide to name it. It doesn't add anymore complexity to the logic of a program it's just dumb to include it. There's easier ways to prove that Java is verbose.
  • 1
    Well, Java IDEs have intellisense and templates. You can write it faster. :D
Add Comment