Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,12 @@
/**
<doc>
<p>Neko uses <i>null</i> for undefined variables,
and also as a programmer accessible value.</p>
<p>The <i>null</i> value can be treated as a boolean value with the
builtin $istrue, and tests as false.</p>
</doc>
*/
var n = null
if n == null $print("n is null\n")
if $not($istrue(n)) $print("and tests as boolean false\n")