fpc/docs/sysutex/ex29.pp
1999-05-13 21:49:26 +00:00

12 lines
239 B
ObjectPascal

Program Example29;
{ This program demonstrates the SetCurrentDir function }
Uses sysutils;
Begin
If SetCurrentDir ('..') Then
Writeln ('Now in directory ',GetCurrentDir)
else
Writeln ('Change directory to .. failed.');
End.