Free Pascal <-> FreeBASIC | Loop with condition at the end until is false
Free Pascal Used keywords: repeat until
repeat until
Description
repeat statements until condition;
Input
- statements - statements
- condition - Logical value The condition can be any expression
Examples
Free Pascal
i:=10;
repeat dec(i) until ( i = 0);
repeat
inc(i);
if i=3 then
break;
until (i=10);
.
FreeBASIC Used keywords: do until loop
do loop until
Description
do
statements
loop until condition
Input
- statements - statements
- condition - Logical value The condition can be any expression
Examples
FreeBASIC
i=10
do
i=i-1
loop until ( i = 0)
do
i=i+1
if i=3 then
exit do
end if
loop until (i=10)
Loop with condition at the end until is false in another programming language:
Differences to:
Share