Skip to content

Instantly share code, notes, and snippets.

@vvondra
Created October 16, 2010 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vvondra/629773 to your computer and use it in GitHub Desktop.
Save vvondra/629773 to your computer and use it in GitHub Desktop.
program MultipleCondition;
uses crt;
var A: Integer;
begin
A := 0;
repeat
begin
inc(A);
WriteLn(A);
end
until (A > 10) or (A = 0);
readkey;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment