When you come back from vacation
@programmerhumor

all 12 comments

sorted by: hot top controversial new old
[–] 40 points 3 years ago

I legitimately lol'd at this. Any time I return from a couple weeks off I'm like "what year is it" + "can you repeat all the stuff about the things".

  • source
  • [–] 22 points 3 years ago (3 children)

    Me temporarily forgetting the structure of an if statement in Shell.

  • source
  • hideshow 6 child comments
  • [–] 11 points 3 years ago

    I'm more

    Hello print("World")
    
  • source
  • [–] 11 points 3 years ago*
    void HelloWorld(string) {
      if (string == "print") {
        Serial.print("Hello World"};
      }
    }
    

    Solved it.

  • source
  • [–] 3 points 3 years ago

    im more of a c person index[array]

  • source
  • [–] 1 point 3 years ago

    (format t “Hello ~a” 'World). If I’m on vacation and come back to the land of C based languages I will have reverted to the only syntax I enjoy working in.

  • source
  • [–] 1 point 3 years ago
    void HelloWorld(void (* func)(const char*)) {
        func("Hello world!");
    }
    
  • source