...
The if statement selects a statement for execution based on the value of a boolean expression.
Syntax
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<if> (condition=”boolean-expression”)
<then>
embedded-statement
</then>
<else>
embedded-statement
</else>
</if>
|
...
The if statement selects a statement for execution based on the value of a boolean expression.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<if> (condition=”boolean-expression”)
<then>
embedded-statement
</then>
<else>
embedded-statement
</else>
</if>
|