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