Hallo DerKapitalist,
ich verstehe die Hilfe so, dass folgende Deklarationen intern gleich verarneitet werden:
Delphi-Quellcode:
function Compute(a, b: String): Int64;
procedure Compute(a, b: String; Var myResult: Int64);
{ Aufruf }
theResult : Int64;
{...}
theResult := Compute('Hallo', 'Welt');
Compute('Hallo', 'Welt', theResult);
In beiden Fällen steht in theResult das Ergebnis.
Ich hoffe das ist das, was du wissen wolltest.