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