programming-examples/perl/Statement/redo statement.pl

16 lines
240 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl -w
use strict;
my $number = 10;
while (<STDIN>) {
chomp;
print "You entered: $_\n";
if ($_ == $number) {
$_++;
redo;
}
print "Going to read the next number now...\n";
}