http://www.perlmonks.org?node_id=239603


in reply to Re: Re: Use an array slices
in thread Use an array slices

I assume that case would look something like this:
#!/usr/bin/perl -wT use strict; my $value = 10; SWITCH: for ($value) { /0/ && do {print "ZERO\n"; last; }; /1/ && do {print "ONE\n"; last; }; /10/ && do {print "TEN\n"; last; }; print "NONE OF THE ABOVE\n"; }
Can you guess what the output is? Run it and find out.

-Blake