fpc/docs/linuxex/ex41.pp
1998-03-25 11:26:49 +00:00

10 lines
134 B
ObjectPascal

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