Perl Programming/Keywords/until
< Perl Programming | Keywords
The until keywordEdit
until is the statement that uses the EXPRESSION, called the condition, to loop until the condition is false. It is the opposite of the while statement.
SyntaxEdit
until EXPRESSION
ExamplesEdit
The code
prints the same twice:
$i = 5;
print $i++ while $i <= 10;
$j = 5;
print $j++ until $j > 10;