alguidelines/content/NAVPatterns/3-cal-coding-guidelines/readability/one-statement-per-line/index.md
2022-02-05 19:44:44 +01:00

358 B

+++ 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;