RosettaCodeData/Task/Null-object/Nanoquery/null-object.nanoquery

8 lines
86 B
Plaintext

$x = $null
if ($x = $null)
println "x is null"
else
println "x is not null"
end if