DEBSOURCES
Skip Quicknav
sources / fpc / 2.6.4%2Bdfsg-4 / fpcdocs / dosex / ex14.pp
12345678
Program Example14; uses Dos; { Program to demonstrate the GetEnv function. } begin WriteLn('Current PATH is ',GetEnv('PATH')); end.