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

9 lines
154 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
FOREVER: for (;;) {
chomp($line = <>);
if ($line eq 'q') {
last FOREVER;
} else {
print "You typed: $line\n";
}
}