summaryrefslogtreecommitdiff
path: root/fpcdocs/olinuxex/ex41.pp
blob: 5abc2d9f8ba77837a64185108c8377e2f74b9433 (plain)
1
2
3
4
5
6
7
8
9
Program Example41;

{ Program to demonstrate the GetEnv function. }

Uses oldlinux;

begin
  Writeln ('Path is : ',Getenv('PATH'));
end.