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
Please Signin or Signup to add a comment