Boolean

A variable of type boolean can have one of two values:
  • true or
  • false

These values are system-defined constants.

Example

dcltrans 
  transaction TMain 
  var 
    bValue1, bValue2:  boolean; 
  begin 
    bValue1 := true; 
    bValue2 := not bValue1; 
  end TMain;