> For the complete documentation index, see [llms.txt](https://hyundai-robotics.gitbook.io/hi6-robot-language/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyundai-robotics.gitbook.io/hi6-robot-language/rl-english/basic-syntax/type/bool-type.md).

# 2.5.3 Boolean Data Type

There are only two values, true and false, as the result of the following logic and comparison operations.

```python
var x=true
print false and x
print 10 > 5
print 10 <= 5

# Result of print
false
true
false
```
