One Statement Per Line

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;
Last modified February 20, 2022: Restructure for Docsy theme (cceb0c94)