ex13.pp 208 B

123456789101112
  1. Program Example13;
  2. uses Dos;
  3. { Program to demonstrate the EnvCount and EnvStr function. }
  4. var
  5. i : Longint;
  6. begin
  7. WriteLn('Current Environment is:');
  8. for i:=1to EnvCount do
  9. WriteLn(EnvStr(i));
  10. end.