if elif else in SRON
SRON provides if, elif and else attributes to take logical decision based upon certain conditions.
If and elif executes the statements only when a certain condition is true. SRON provides 'if', 'elif' and 'else' attributes for this.
If neither if's condition is true nor elif's, then else statements runs.
To provide the condition on the basis of which if or elif take decisions, 'condition' attribute is used.
Last updated