Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

 

Description

The if statement selects a statement for execution based on the value of a boolean expression.

Syntax

Conditional Statement Syntax
<if condition="boolean-expression">
<then> 
   embedded-statement  
</then>
<else> 
  embedded-statement 
</else>
</if>

Syntax Notes

Reserved keywords box

Tag
if
then
else
condition=

 

Examples

  • No labels