ex14.pp 136 B

12345678
  1. Program Example14;
  2. uses Dos;
  3. { Program to demonstrate the GetEnv function. }
  4. begin
  5. WriteLn('Current PATH is ',GetEnv('PATH'));
  6. end.