ex28.pp 157 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.