mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 02:08:09 +02:00
9 lines
160 B
ObjectPascal
9 lines
160 B
ObjectPascal
Program Example11;
|
|
uses Dos;
|
|
|
|
{ Program to demonstrate the FExpand function. }
|
|
|
|
begin
|
|
WriteLn('Expanded Name of this program is ',FExpand(ParamStr(0)));
|
|
end.
|