and
Logical and
```pascaligo
const logical_and: bool = True and True;
```
or
Logical or
```pascaligo
const logical_or: bool = False or True;
```
not
Logical not
```pascaligo
const logical_not: bool = not False;
```
=
Equals
```pascaligo
const eq: bool = 2 = 3;
```
=/=
Not equals
```pascaligo
const not_eq: bool = 2 =/= 3;
```
>
Greater than
```pascaligo
const gt: bool = 4 > 3;
```
<
Less than
```pascaligo
const lt: bool = 4 < 3;
```
>=
Greater than or equal to
```pascaligo
const gte: bool = 4 >= 3;
```
<=
Less than or equal to
```pascaligo
const lte: bool = 4 <= 3;
```