Reorganize site to make room for documenting the other built-in modules.

This commit is contained in:
Bob Nystrom
2015-11-08 13:31:22 -08:00
parent 8c0dae1320
commit 82706b74fc
52 changed files with 771 additions and 178 deletions
+19
View File
@@ -0,0 +1,19 @@
^title Bool Class
Boolean [values][]. There are two instances, `true` and `false`.
[values]: ../../values.html
## Methods
### **!** operator
Returns the logical complement of the value.
:::wren
System.print(!true) //> false
System.print(!false) //> true
### toString
The string representation of the value, either `"true"` or `"false"`.