# $EPIC: until.txt,v 1.2 2006/08/20 17:37:08 sthalik Exp $ ======Synopsis:====== __until__ () [{] [}] ======Description:====== The __UNTIL__ loop is the inverse of the [[WHILE]] loop; it performs the given so long as is false. The is evaluated in "expression mode". The is evaluated in "text mode". The curly-braces around are recommended, but optional. ======Examples:====== To display a warning message 3 times: @ xx = 3 until ( xx == 0 ) { echo WARNING! This ship will self destruct in $xx seconds! @ xx-- } A infinite loop that behaves like the Unix 'yes' command: until ( 0 ) echo yes ======History:====== The __UNTIL__ command first appeared in EPIC3.