fpc/docs/linuxex/ex41.pp
2004-07-18 11:57:11 +00:00

10 lines
139 B
ObjectPascal

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