mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 03:39:25 +02:00
13 lines
208 B
ObjectPascal
13 lines
208 B
ObjectPascal
Program Example13;
|
|
uses Dos;
|
|
|
|
{ Program to demonstrate the EnvCount and EnvStr function. }
|
|
|
|
var
|
|
i : Longint;
|
|
begin
|
|
WriteLn('Current Environment is:');
|
|
for i:=1to EnvCount do
|
|
WriteLn(EnvStr(i));
|
|
end.
|