mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-30 06:11:54 +01: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. |