mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-25 01:38:20 +02:00
10 lines
139 B
ObjectPascal
10 lines
139 B
ObjectPascal
Program Example41;
|
|
|
|
{ Program to demonstrate the GetEnv function. }
|
|
|
|
Uses BaseUnix;
|
|
|
|
begin
|
|
Writeln ('Path is : ',fpGetenv('PATH'));
|
|
end.
|