Stops the loop when the condition fails.

DO IF and LOOP IF work similarly: one checks the condition at the start, the other at the end. Both can be used depending on the situation.

loop if ?
?condition
ValueDescription
=equal to
<inferior to
>superior to
<=inferior or equal to
>=superior or equal to
<>not equal to
Source?a = 1 do print ?a ?a+1 loop if ?a < 3 print "GO!" Execution1 2 3 GO!

do if