/**

Neko uses null for undefined variables, and also as a programmer accessible value.

The null value can be treated as a boolean value with the builtin $istrue, and tests as false.

*/ var n = null if n == null $print("n is null\n") if $not($istrue(n)) $print("and tests as boolean false\n")