1
edit
Changes
no edit summary
== Project Marking Percentage ==
== Repository ==
== Coding Style ==
1. Make sure to comment your code for any logic you think is complicated
Fardad's rules
int a; // good
int a, b. c; //bad
int
a; // bad
Single line blocks must be surrounded by { and }
if(whatever){
do this:
} // good
if(whatever) do this; //bad
if(whatever)
do this; // bad
== Team Members ==