<cond>

Purpose The <cond> clause is used to perform a comparison that yields a boolean result to be used in the following statements:
<do> ... <cond>
<do> ... <until>
<for>
<if>
<while>

Please note that the <do> ... <until> statement uses the <until> clause exactly as the <cond> clause in the other statements.

Format <cond>
   {comparison clause}
</cond>
{comparison clause} an <eval> statement that evaluates to a boolean value-- i.e. true or false.
For examples go to the pages for the statements that use the <cond> clause
<do> ... <cond>
<do> ... <until>
<for>
<if>
<while>