8 lines
86 B
Text
8 lines
86 B
Text
|
|
$x = $null
|
||
|
|
|
||
|
|
if ($x = $null)
|
||
|
|
println "x is null"
|
||
|
|
else
|
||
|
|
println "x is not null"
|
||
|
|
end if
|