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