Submitted By: admin on April 13, 2020
0
9004
Source: www.reddit.com
there's only two kinds of comments in this world
//for loop to do things a lot of times. Link to c++ tutorial
for(int i = 0; i < x; i++) {// blah blah blah
and theres:
//app that does thing
void main() {
bunch_of_weird_stuff_happening_with_no_documentation();
}
- LavendarAmy