ex28.pp 158 B

123456789
  1. Program Example28;
  2. { This program demonstrates the GetCurrentDir function }
  3. Uses sysutils;
  4. Begin
  5. Writeln ('Current Directory is : ',GetCurrentDir);
  6. End.