in reply to Perl 5.10: switch statement demo
#!/usr/bin/perl -w use strict; { for (1..40) { print; ($_ % 3 == 0) && print q! fizz!; ($_ % 5 == 0) && print q! buzz!; ($_ % 7 == 0) && print q! sausage!; print "\n"; } }
#!/usr/bin/perl -w use strict; { my @items = qw/The three principal virtues of a programmer are Laz +iness, Impatience, and Hubris. See the Camel Book for why/; for (@items) { /^[A-Z]/ && do { print "Found a proper noun? $_\n"; next; }; /[,.]/ && do { print "This word has punctuation: $_\n"; next; }; print "This word seems uninteresting: $_\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl 5.10: switch statement demo
by robin (Chaplain) on Dec 20, 2007 at 18:20 UTC | |
by LighthouseJ (Sexton) on Dec 20, 2007 at 18:43 UTC | |
by robin (Chaplain) on Dec 20, 2007 at 21:18 UTC |