ex27.pp 185 B

12345678910
  1. Program Example27;
  2. { Program to demonstrate the Umask function. }
  3. Uses linux;
  4. begin
  5. Writeln ('Old Umask was : ',Umask(Octal(111)));
  6. WRiteln ('New Umask is : ',Octal(111));
  7. end.