ex29.pp 154 B

12345678910
  1. Program Example29;
  2. { Program to demonstrate the GetDir function. }
  3. Var S : String;
  4. begin
  5. GetDir (0,S);
  6. Writeln ('Current directory is : ',S);
  7. end.