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

8 lines
86 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$x = $null
if ($x = $null)
println "x is null"
else
println "x is not null"
end if