1
edit
Changes
no edit summary
* status
== Syntax Guidelines ==
This is a group of recommendation of coding style pertinent to this group.
Feel free to add or modify where you see fit.
'''Comments:'''
* Comments should explain the purpose behind statements not logic.
* Explain each parameters role to the function.
* State the return of the function and the result from it.
'''Example:'''
<pre>
/*
* Pourpose: A short description of the function.
*
* Parameters: int x -> Describe what use the function makes of the variable.
*
* Return: int, bool etc... What the value means in external context of function.
*/
void foo(int x) {
return x;
}
</pre>
== meetings ==