Rule Templates
Rule templates provide the core decision-making constructs in language rules.
Template name | Template format | Return type |
---|---|---|
Action Set ... | Take the following actions: <add action> | na |
If... Then... | If <build condition> Then <add action> | na |
If... Then... Else... | If <build condition> Then <add action> Else <add action> | na |
Select... Case... | Select Case <add case> | na |
Select... Case... | Select Case <add case> Else <add action> | na |
While... Do... | While <build condition> Do the following: <add action> | na |