Files
wren/doc/site/modules/core/null.markdown

11 lines
177 B
Markdown
Raw Normal View History

2015-01-18 15:36:36 -08:00
^title Null Class
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).
:::wren
System.print(!null) //> true