mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 08:20:00 +02:00
10 lines
146 B
ObjectPascal
10 lines
146 B
ObjectPascal
Program Example77;
|
|
|
|
{ Program to demonstrate the Rename function. }
|
|
Var F : Text;
|
|
|
|
begin
|
|
Assign (F,paramstr(1));
|
|
Rename (F,paramstr(2));
|
|
end.
|