2015-01-18 15:36:36 -08:00
|
|
|
^title Null Class
|
|
|
|
|
^category core
|
|
|
|
|
|
2015-03-27 07:43:36 -07:00
|
|
|
## Methods
|
|
|
|
|
|
2015-01-18 15:36:36 -08:00
|
|
|
### **!** operator
|
|
|
|
|
|
|
|
|
|
Returns `true`, since `null` is considered [false](../control-flow.html#truth).
|
|
|
|
|
|
2015-09-22 07:59:54 -07:00
|
|
|
:::wren
|
2015-09-15 07:46:09 -07:00
|
|
|
System.print(!null) // "true".
|