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