mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 13:49:23 +02:00
11 lines
154 B
ObjectPascal
11 lines
154 B
ObjectPascal
Program Example29;
|
|
|
|
{ Program to demonstrate the GetDir function. }
|
|
|
|
Var S : String;
|
|
|
|
begin
|
|
GetDir (0,S);
|
|
Writeln ('Current directory is : ',S);
|
|
end.
|