ex41.pp 134 B

123456789
  1. Program Example41;
  2. { Program to demonstrate the GetEnv function. }
  3. Uses linux;
  4. begin
  5. Writeln ('Path is : ',Getenv('PATH'));
  6. end.