fpc/docs/bunixex/ex41.pp
2004-10-22 21:57:33 +00:00

10 lines
139 B
ObjectPascal

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