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

12 lines
194 B
Markdown
Raw Normal View History

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).
:::wren
2015-09-15 07:46:09 -07:00
System.print(!null) // "true".