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

11 lines
142 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl -w
use strict;
while (<STDIN>) {
last if $_ eq "done\n";
print "You entered: $_";
}
print "All done!\n";