Off Topic > Off Topic
Programming Megathread
Darryl McKoy:
Why do we need a megathread? Has there been so many programming discussions in Off Topic that you feel we need to combine them all here?
shitlord:
--- Quote from: Darryl McKoy on October 28, 2015, 09:10:16 PM ---Why do we need a megathread? Has there been so many programming discussions in Off Topic that you feel we need to combine them all here?
--- End quote ---
i dont remember seeing any other programming threads
Foxscotch:
I prefer this kind of style
function helloWorld () {
console.log('UGH');
}
to the examples you have in the OP
but it does depend on the language. in C or C++ I probably wouldn't stick the space between the function name and the (empty) argument list
however. I would NEVER put a space there in a function call because that is the most hideous thing in the entire planet earth
also your python example is python 2 (vomit)
replace it with this pls
print('Hello world!')
Fab:
--- Quote from: Becquerel on October 28, 2015, 09:09:54 PM ---Thats actually kinda cool!
Adding to OP under new category "Just what can programming do?"
--- End quote ---
did you saw the part where the AI said it was going to put every human in a "human zoo"?
Becquerel:
--- Quote from: Foxscotch on October 28, 2015, 09:20:59 PM ---
also your python example is python 2 (vomit)
replace it with this pls
print('Hello world!')
--- End quote ---
Will do