Andromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.com to Programmer Humor@programming.devEnglish · 6 months agoHow programmers comment their codelemmy.dbzer0.comimagemessage-square127fedilinkarrow-up11.5Kfile-text
arrow-up11.5KimageHow programmers comment their codelemmy.dbzer0.comAndromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.com to Programmer Humor@programming.devEnglish · 6 months agomessage-square127fedilinkfile-text
minus-squareyetAnotherUser@discuss.tchncs.delinkfedilinkarrow-up112·6 months ago/* * Gets stupidFuckingInteger * * @returns stupidFuckingInteger */ public double getStupidFuckingInteger() { return stupidFuckingInteger; }
minus-squaremrpants@midwest.sociallinkfedilinkEnglisharrow-up38·edit-26 months agoThe lack of a return type declaration makes this sooo good.
minus-squareexpr@programming.devlinkfedilinkarrow-up31·edit-26 months agoIt has the return type declared to be double.
minus-squaremrpants@midwest.sociallinkfedilinkEnglisharrow-up18·6 months agoI cannot read. Even better.
minus-squareILikeBoobies@lemmy.calinkfedilinkarrow-up16·6 months agoMakes sense, people looking for int would find a double
minus-squarethreelonmusketeers@sh.itjust.workslinkfedilinkEnglisharrow-up1·4 months agoHappy cake day!
minus-squareAdNecrias@lemmy.ptlinkfedilinkarrow-up4·6 months agoReminds me of a job I had where c# summaries were mandatory and people used a documentation generator just like that. /// Ages the Category. public int AgeCategory (…)
/* * Gets stupidFuckingInteger * * @returns stupidFuckingInteger */ public double getStupidFuckingInteger() { return stupidFuckingInteger; }
The lack of a return type declaration makes this sooo good.
It has the return type declared to be
double
.I cannot read. Even better.
This being a double physically hurts
Makes sense, people looking for int would find a double
Happy cake day!
Reminds me of a job I had where c# summaries were mandatory and people used a documentation generator just like that.
/// Ages the Category. public int AgeCategory (…)