programming-examples/perl/Statement/unless statement in while.pl

3 lines
58 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
while (<>) {
print "Too small!\n" unless $_ > 100;
}