Reorganize core library docs.

This commit is contained in:
Bob Nystrom
2015-01-18 15:36:36 -08:00
parent 50c0cbe8c3
commit 2a4804bbc9
17 changed files with 543 additions and 418 deletions
+17
View File
@@ -0,0 +1,17 @@
^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"`.