fork(1) download
  1. program demo;
  2.  
  3. procedure Foo;
  4. begin end;
  5.  
  6. procedure Bar;
  7. begin end;
  8.  
  9. var
  10. c: integer;
  11.  
  12. begin
  13. c := -8;
  14. repeat
  15. Foo;
  16. Bar;
  17. c += 1;
  18. until
  19. c = 0;
  20. end.
Success #stdin #stdout 0s 276KB
stdin
Standard input is empty
stdout
Standard output is empty