Reorganizing
This commit is contained in:
parent
a4f6467d78
commit
f4886ee235
326 changed files with 4 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
+++
|
||||
title = "One Statement Per Line"
|
||||
weight = 910
|
||||
+++
|
||||
A line of code should not have more than one statement.
|
||||
Bad code
|
||||
|
||||
IF OppEntry.FIND('-') THEN EXIT
|
||||
|
||||
|
||||
|
||||
Good code
|
||||
|
||||
IF OppEntry.FIND('-') THEN
|
||||
EXIT
|
||||
|
||||
|
||||
|
||||
Bad code
|
||||
|
||||
TotalCost += Cost; TotalAmt += Amt;
|
||||
|
||||
|
||||
|
||||
Good code
|
||||
|
||||
TotalCost += Cost;
|
||||
TotalAmt += Amt;
|
||||
Loading…
Add table
Add a link
Reference in a new issue