RosettaCodeData/Task/Null-object/Latitude/null-object-1.latitude
2023-07-01 13:44:08 -04:00

6 lines
98 B
Text

foo := Nil.
if { foo nil?. } then {
putln: "Foo is nil".
} else {
putln: "Foo is not nil".
}.