summaryrefslogtreecommitdiff
path: root/fpcdocs/sysutex/ex28.pp
blob: 212f6a5329a4a73dfc963a13bfc4ac13690cdc3a (plain)
1
2
3
4
5
6
7
8
9
Program Example28;

{ This program demonstrates the GetCurrentDir function }

Uses sysutils;

Begin
  Writeln ('Current Directory is : ',GetCurrentDir);
End.