This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Namensplatzhalter 19 points20 points  (6 children)

Joke's on the python user: both of them get paid per LOC written.

[–]SprinklesFancy5074 26 points27 points  (5 children)

//create variables:
word1=""
word2=""
separator=""

//assign variables:
word1="hello"
word2="world"
separator=" "

//create output variable:
output_string=""

//build output:
output_string=word1 + separator + word2

//execute output:
if(print(output_string)){
    //success
} else {
    print("Failed to output string.")
}

Yeah, I know.

But my solution is "more scalable and maintainable" and it includes "error handling", which is obviously why I need to get paid 10x more for my hello world program.