fpc/docs/refex/ex29.pp
1998-03-25 11:26:49 +00:00

11 lines
154 B
ObjectPascal

Program Example29;
{ Program to demonstrate the GetDir function. }
Var S : String;
begin
GetDir (0,S);
Writeln ('Current directory is : ',S);
end.