in reply to Re: given/when one case prefixes another
in thread given/when one case prefixes another

The short amount of code and large about of local variables involved makes that awkward.

I did end up changing the code, separating out the common stuff by making pre-tests before all that, so it was even more uniform.

  • Comment on Re^2: given/when one case prefixes another

Replies are listed 'Best First'.
Re^3: given/when one case prefixes another
by LanX (Saint) on Apr 26, 2011 at 22:33 UTC
    > The short amount of code and large about of local variables involved makes that awkward.

    why?

    for ( 1..2,"a".."b") { ifnum(); ifchar(); print "\n" } sub ifnum { if (/1/) { print } elsif (/2/) { print } else { return } print " is number"; } sub ifchar { print && goto CONT if /a/; print && goto CONT if /b/; return; CONT: print " is character"; }

    OUTPUT:

    1 is number 2 is number a is character b is character

    Cheers Rolf

    UPDATE: changed ifnum() to elsif-clauses.

    see also: Re: given/when one case prefixes another