13
Gophyr
7y

When I start a new project in Python after not doing Python for a while:

print("Hello, World.");

When I start in C:

printf("Hello, World.")

After errors: *facepalm* *facepalm* *facepalm* "RRRRGH semicolon."

Heh at least this time I remembered that Python uses print(), not printf()...

Comments
  • 0
    also dont forget newline character since C doesnt add the automatically unless you use puts(). 😀
Add Comment