summaryrefslogtreecommitdiff
path: root/fpcdocs/sysutex/ex93.pp
blob: a16884dd0fc814486a15394f68ab16e5395f79c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
{$h+}
program example92;

{ This program demonstrates the
  GetEnvironmentVariable function }

uses sysutils;

begin
   Writeln('PATH is: ',GetEnvironmentVariable('PATH'));
end.