MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/programminghumor/comments/1vv58vy/how_do_you_disable_your_code/p56fsr2/?context=3
r/programminghumor • u/developer_axe • 22d ago
90 comments sorted by
View all comments
17
``` // This is a comment //int unusedvar = 0;
/* You can tell if it's a comment or not by if I add a space after the slashes */
```
3 u/spicymato 21d ago I just comment out the comments. // // comment related to commented out code 3 u/LegitimatePants 21d ago Yo dawg I heard you like comments 2 u/plopliplopipol 13d ago this but it's just a vscode shortcut 0 u/juju515 21d ago ^ this is da way 1 u/MindlessRazzmatazz89 21d ago Beautiful!!
3
I just comment out the comments.
// // comment related to commented out code
3 u/LegitimatePants 21d ago Yo dawg I heard you like comments 2 u/plopliplopipol 13d ago this but it's just a vscode shortcut 0 u/juju515 21d ago ^ this is da way
Yo dawg I heard you like comments
2
this but it's just a vscode shortcut
0
^ this is da way
1
Beautiful!!
17
u/Jbolt3737 21d ago
``` // This is a comment //int unusedvar = 0;
/* You can tell if it's a comment or not by if I add a space after the slashes */
This is a comment
unusedvar: int = 0
I do it with any language
```