| Warning |
|---|
Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center? Click here and leave these dusty old pages behind ! |
Contents
| Table of Contents |
|---|
...
| Code Block |
|---|
for(<variable_definition> in #{array}){
Instruction1;
...
InstructionN;
}
|
Examples
Example 1 (standard form)
...
| Code Block |
|---|
for(string user in watchers){
print(user);
}
|
While Statement
The while statement offers support for repeated executions. This form evaluates the condition first and then executes the instructions in the body.
...