Code snippet of the day:

Code snippet of the day:

try
   DoSomething();
   Result := True;
except
   Result := False;
   raise;
end;

Comments

  1. This is a typical function which can only return True. Half boolean? :)

    ReplyDelete

Post a Comment