1
edit
Changes
→Coding Style Rules: v5 more rules added
Function names should have meaningful names (they do not require prefix)
Function names Should be all lower case except for the First letter of each Word.
Each function should have only one point of entry and one point of exit.
I.E. There should be only 1 return statement in each function.