fork download
  1. program ideone;
  2. var x:integer;
  3. begin
  4. (* your code goes here *)
  5. x:=10;
  6. repeat
  7. writeln(x);
  8. dec(x);
  9. until (x>5);
  10. end.
Success #stdin #stdout 0s 276KB
stdin
Standard input is empty
stdout
10