Recommended Syntax Alignment
This section lists several recommendations for properly aligning syntax when writing rules in the Free Form editor.
 The SRL code example below illustrates each of the following points. 
	 
 
	 - ifand- thenstatements: Place on separate lines.- This practice helps to ensure that the rule always has one - ifstatement for each- thenstatement.
- Nested conditions: Indent for better readability.
- orand- andstatements: Indent each statement and place on separate lines.
- Parentheses 
		  ()and brackets{}: Place on separate lines.This practice helps to ensure that for every open parenthesis or bracket, there is a corresponding close parenthesis or bracket. 
if
   (CRTRAN25.authPostFlag = "A")
then
{
    if 
        (ffmFrdCard.Score = 900
        and 
        CRTRAN25.cardPaymentHistory = "K")
    then 
       {TriggerCase(ACCOUNT);}
}