summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex77.pp
blob: af822711283fa047756722f9bf067f8c94df2428 (plain)
1
2
3
4
5
6
7
8
9
Program Example77;

{ Program to demonstrate the Rename function. }
Var F : Text;

begin
  Assign (F,paramstr(1));
  Rename (F,paramstr(2));
end.