7 lines
98 B
Text
7 lines
98 B
Text
|
|
foo := Nil.
|
||
|
|
if { foo nil?. } then {
|
||
|
|
putln: "Foo is nil".
|
||
|
|
} else {
|
||
|
|
putln: "Foo is not nil".
|
||
|
|
}.
|