What is a continue function in Perl?
Control statement makes iteration to beginning of loops for next iteration.
Method 1:
$t = 0; while($t < 3) { print "Value of var t = $t\n"; } continue { $t = $t + 1; }
Labels: continue equivalent in perl, kaavannan perl blogspot, perl continue, perl continue if statement