Hello Again!

I need to evaluate a lot of conditionals, and of course the use of a lot of 
if's its not the 'right' way, so Im using something like this:

CASE: {
        ($string == "match1") && do {
        actions..
        last CASE;
        };
        ($string == "match2") && do {
        actions..
        last CASE;
        };
        and a lot more..
}

The question, where does the 'default' case starts?. The last 5 years I have 
been programming in C/C++/C#/Php.. C-styles languages, so in Perl, where does 
the 'default' case begins?

Thanks
Pablo
-- 
Pablo Fischer Sandoval ([EMAIL PROTECTED])
http://www.pablo.com.mx
http://www.debianmexico.org
GPG FingerTip: 3D49 4CB8 8951 F2CA 8131  AF7C D1B9 1FB9 6B11 810C
Firma URL: http://www.pablo.com.mx/firmagpg.txt

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to