ex27.pp 178 B

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