mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 20:29:27 +02:00
10 lines
137 B
ObjectPascal
10 lines
137 B
ObjectPascal
Program Example41;
|
|
|
|
{ Program to demonstrate the GetEnv function. }
|
|
|
|
Uses oldlinux;
|
|
|
|
begin
|
|
Writeln ('Path is : ',Getenv('PATH'));
|
|
end.
|