Files
wren/doc/site/core/bool.markdown
T

18 lines
291 B
Markdown
Raw Normal View History

^title Bool Class
^category core
Boolean values. There are two instances, `true` and `false`.
### **!** operator
Returns the logical complement of the value.
> !true
false
> !false
true
### toString
The string representation of the value, either `"true"` or `"false"`.