fpc/docs/olinuxex/ex41.pp
2004-10-16 13:14:03 +00:00

10 lines
137 B
ObjectPascal

Program Example41;
{ Program to demonstrate the GetEnv function. }
Uses oldlinux;
begin
Writeln ('Path is : ',Getenv('PATH'));
end.