Mega Code Archive

 
Categories / Perl / Statement
 

The until modifier repeatedly executes the second expression as long as the first expression is false

#Format: Expression2 until Expression1; $x=1; print $x++,"\n" until $x == 5;