RosettaCodeData/Task/Null-object/Delphi/null-object.pas

7 lines
103 B
ObjectPascal

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