How programmers comment their code
How programmers comment their code
![](https://programming.dev/pictrs/image/c3b691ae-973d-4f45-96ef-fabe1af506c2.webp?format=webp&thumbnail=128)
![](https://programming.dev/pictrs/image/c3b691ae-973d-4f45-96ef-fabe1af506c2.webp?format=webp)
How programmers comment their code
You're viewing a single thread.
/* * 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 (...)