Cows Look Like Maps@sh.itjust.works to Programmer Humor@programming.dev · 1 year agoBill is a pro grammersh.itjust.worksimagemessage-square88fedilinkarrow-up1787arrow-down195
arrow-up1692arrow-down1imageBill is a pro grammersh.itjust.worksCows Look Like Maps@sh.itjust.works to Programmer Humor@programming.dev · 1 year agomessage-square88fedilink
minus-squaremagic_lobster_party@kbin.sociallinkfedilinkarrow-up74·1 year agox += 1; // Increases x by one
minus-squaretowerful@programming.devlinkfedilinkarrow-up60arrow-down2·edit-21 year 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
minus-squaremorrowindlinkfedilinkarrow-up36·1 year agoWait why is it dynamically allocated and why are you increasing the memory. Something is very wrong here
minus-squarefloofloof@lemmy.calinkfedilinkEnglisharrow-up32·1 year agoFound the bug. Thank goodness for comments.
minus-squareAnders429@programming.devlinkfedilinkarrow-up3·1 year agoOh, is this what they meant by “commenting your code”?
minus-squareAnders429@programming.devlinkfedilinkarrow-up11·1 year agoWhy the heck does it need to be dynamically allocated? Just put that puppy on the stack.
minus-squaretowerful@programming.devlinkfedilinkarrow-up6·1 year agoThat’s what it used to do. But it was a bug, and the code has been fixed.
minus-squareautokludge@programming.devlinkfedilinkEnglisharrow-up19·edit-21 year ago…Years later x += config.increment; // Increases x by one """ config.yaml increment: -2 """
x += 1; // Increases x by one
// 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
Wait why is it dynamically allocated and why are you increasing the memory. Something is very wrong here
Found the bug. Thank goodness for comments.
Oh, is this what they meant by “commenting your code”?
Why the heck does it need to be dynamically allocated? Just put that puppy on the stack.
That’s what it used to do.
But it was a bug, and the code has been fixed.
…Years later
x += config.increment; // Increases x by one
""" config.yaml increment: -2 """