fpc/docs/dosex/ex14.pp
1998-03-25 11:26:49 +00:00

9 lines
136 B
ObjectPascal

Program Example14;
uses Dos;
{ Program to demonstrate the GetEnv function. }
begin
WriteLn('Current PATH is ',GetEnv('PATH'));
end.