20 lines
229 B
Markdown
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
|
|
```
|