| ID | ToolTip | Default |
|---|---|---|
| param1 | condition | true |
| body1 | code to execute if the condition is true | // body1 |
| body2 | code to execute if the condition is false | // body2 |
if ($param1$) {
$body1$
}
else {
$body2$
}$end$