ex73.pp 270 B

1234567891011121314151617
  1. program example73;
  2. { Program to demonstrate the FpSleep function. }
  3. uses BaseUnix;
  4. Var
  5. Res : Longint;
  6. begin
  7. Write('Sleep returned : ');
  8. Flush(Output);
  9. Res:=(fpSleep(10));
  10. Writeln(res);
  11. If (res<>0) then
  12. Writeln('Remaining seconds : ',res);
  13. end.