Elementary TypesBooleanOn this pageBoolean Description The BOOL is the workhorse of PLC programming. A boolean variable has only two states FALSE and TRUE. Declaration a : BOOL; // Initializes to FALSEb : BOOL := TRUE; // Initialized to TRUEa := TRUE;a := FALSE;