Exit with result parameter
Syntax
You can now exit a function early and set it's result at the same time.
function AbsoluteValueOf(Value : integer) : integer;
begin
  if Value >= 0 then
    Exit(Value)
  else
    Exit(Value * -1);
end;
Notes