in reply to until loops
Can't you just use an "unless" just the same? Is there an advantage/disadvantage to one or the other?
Michael Jensen
InShift Technologies
http://www.inshift.com
michael@inshift.com
$year=1900; unless($year==2000){ #notice unless instead of until print "blah blah $year\n"; #now it works; $year++; } print "Done\n";
Michael Jensen
InShift Technologies
http://www.inshift.com
michael@inshift.com
In Section
Tutorials