Line 266:
Line 266:
==== while ====
==== while ====
−
while ( condition ) {
+
[http://perldoc.perl.org/functions/while.html while] ( condition ) {
...
...
}
}
Line 272:
Line 272:
There's also a negated version, for the same reason we have '''unless''' :
There's also a negated version, for the same reason we have '''unless''' :
−
until ( condition ) {
+
[http://perldoc.perl.org/functions/until.html until] ( condition ) {
...
...
}
}