• @towerful
      link
      61
      edit-2
      10 months ago

      // increase the dynamically allocated memory space of a word sized integer stored at the memory address represented by the symbol "x" by the integer 1 and terminate the instruction

      • @[email protected]
        link
        fedilink
        3810 months ago

        Wait why is it dynamically allocated and why are you increasing the memory. Something is very wrong here

      • @Anders429
        link
        1110 months ago

        Why the heck does it need to be dynamically allocated? Just put that puppy on the stack.

        • @towerful
          link
          610 months ago

          That’s what it used to do.
          But it was a bug, and the code has been fixed.

    • autokludge
      link
      English
      20
      edit-2
      10 months ago

      …Years later
      x += config.increment; // Increases x by one

      """
      config.yaml
      increment: -2
      """
      
    • ZILtoid1991
      link
      fedilink
      1510 months ago

      x++; // Move X position forward by one

      There, I made that kind of comment more useful!

      • LostXOR
        link
        fedilink
        910 months ago

        x++; // Set x to the incrementation of the value of x
        Much better.