RosettaCodeData/Task/Null-object/Nanoquery/null-object.nanoquery
2023-07-01 13:44:08 -04:00

7 lines
86 B
Text

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