mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-08 07:58:34 +02:00
9 lines
158 B
ObjectPascal
9 lines
158 B
ObjectPascal
Program Example28;
|
|
|
|
{ This program demonstrates the GetCurrentDir function }
|
|
|
|
Uses sysutils;
|
|
|
|
Begin
|
|
Writeln ('Current Directory is : ',GetCurrentDir);
|
|
End. |