|  |  5.2.9 if 
See
 Control structures;
 boolean expressions;
 break;
 else.Syntax:if (boolean_expression)true_block
 if (boolean_expression)true_blockelsefalse_blockPurpose:executes true_block if the boolean condition is true. If the ifstatement is followed by anelsestatement and the boolean
condition is false, then false_block is executed.Example:|  | int i = 9;
matrix m[i][i];
if (i > 5 and typeof(m) == "matrix")
{
  m[i][i] = i;
}
 | 
 |