RosettaCodeData/Task/Null-object/Delphi/null-object.pas
2024-10-16 18:07:41 -07:00

6 lines
103 B
ObjectPascal

// the following are equivalent
if lObject = nil then
...
if not Assigned(lObject) then
...