fpc/docs/sysutex/ex28.pp
2005-02-14 17:13:06 +00:00

9 lines
157 B
ObjectPascal

Program Example28;
{ This program demonstrates the GetCurrentDir function }
Uses sysutils;
Begin
Writeln ('Current Directory is : ',GetCurrentDir);
End.