…Years later
x += config.increment; // Increases x by one
Comment on Bill is a pro grammer
magic_lobster_party@kbin.social 1 year ago
x += 1; // Increases x by one
autokludge@programming.dev 1 year ago
ZILtoid1991@kbin.social 1 year ago
x++; // Move X position forward by one
There, I made that kind of comment more useful!
LostXOR@kbin.social 1 year ago
x++; // Set x to the incrementation of the value of x
Much better.Jakylla@sh.itjust.works 1 year ago
// Move to the right
towerful@programming.dev 1 year ago
// increase the dynamically allocated memory space of a byte integer represented by the symbol “x” by the integer 1 and terminate the instruction
Anders429@programming.dev 1 year ago
Why the heck does it need to be dynamically allocated? Just put that puppy on the stack.
towerful@programming.dev 1 year ago
That’s what it used to do.
But it was a bug, and the code has been fixed.