RosettaCodeData/Task/Null-object/Latitude/null-object-1.latitude

7 lines
98 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
foo := Nil.
if { foo nil?. } then {
putln: "Foo is nil".
} else {
putln: "Foo is not nil".
}.