• @WhatAmLemmy@lemmy.world
    link
    fedilink
    391 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”.

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

    Solved it.

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