fpc/docs/linuxex/ex27.pp
1998-03-25 11:26:49 +00:00

11 lines
185 B
ObjectPascal

Program Example27;
{ Program to demonstrate the Umask function. }
Uses linux;
begin
Writeln ('Old Umask was : ',Umask(Octal(111)));
WRiteln ('New Umask is : ',Octal(111));
end.