Fa nimmt keinen wert an, sondern gibt einen zurück, genauso wie eine mathematische Funktion.
y=f(x) = x*2;
x=1 -> y = 2*1 = 1
x=2 -> y = 2*2 = 4
Delphi-Quellcode:
function f( x: Extended): Extended;
begin
result := x*2;
end;
...
x := 1;
y := f(x); //-> y = 1
x := 2;
y := f(x); //-> y = 4