ex93.pp 177 B

1234567891011
  1. {$h+}
  2. program example92;
  3. { This program demonstrates the
  4. GetEnvironmentVariable function }
  5. uses sysutils;
  6. begin
  7. Writeln('PATH is: ',GetEnvironmentVariable('PATH'));
  8. end.