1
edit
Changes
→Syntax Guidelines
* Comments should explain the purpose behind statements not logic.
* Explain each parameters role to the function.
* State the return value of the function and the result from it.
'''Example:'''
* 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.
*/