RosettaCodeData/Task/Generic-swap/Delphi/generic-swap-1.delphi
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

8 lines
93 B
Text

procedure Swap_T(var a, b: T);
var
temp: T;
begin
temp := a;
a := b;
b := temp;
end;