Files
Decodal/doc/manual/source/language/value/bool.md
T

20 lines
229 B
Markdown

# Bool
`Bool` is the primitive type constraint for Boolean values.
## Examples
```dcdl
enable = Bool default true;
disable = Bool default false;
```
## Literals
`Bool` accepts the following literals:
```dcdl
true
false
```