|  | 
|  |  |  |  | 
The keyword and performs a logical operation which returns the value true if both its operands are true; otherwise it returns the value false.
Related keywords:
| and | 
Example 1:
const boolean c_bra := true;  
const boolean c_daalig := false;  
var boolean v_zwist := c_bra and c_daalig; 
The varaible v_zwist will have the initial value false.
BNF definition of and