fpc/docs/sysutex/ex28.pp
1999-05-13 21:49:26 +00:00

9 lines
158 B
ObjectPascal

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