while/until Loop : While « Statement « Perl
- Perl
- Statement
- While
while/until Loop
#while ( conditional expression ) {
# code block A
#}
$count=0; # Initial value
while ($count < 10 ){ # Test
print $n;
$count++; # Increment value
}
Related examples in the same category