mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 06:38:45 +01:00
366 B
366 B
^title Bool Class
Boolean values. There are two instances, true and false.
Methods
! operator
Returns the logical complement of the value.
System.print(!true) //> false System.print(!false) //> true
toString
The string representation of the value, either "true" or "false".