• @WhatAmLemmy
    link
    381 year 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”.

  • @Dasnap
    link
    221 year ago

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

  • LazaroFilm
    link
    English
    12
    edit-2
    1 year ago
    void HelloWorld(string) {
      if (string == "print") {
        Serial.print("Hello World"};
      }
    }
    

    Solved it.

  • cs127
    link
    fedilink
    11 year ago
    void HelloWorld(void (* func)(const char*)) {
        func("Hello world!");
    }
    
  • @[email protected]
    link
    fedilink
    11 year 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.