in reply to Re^2: Multiple Conditional Statements
in thread Multiple Conditional Statements

For strictly numeric comparison add 0+:

if( keys %{ { map{ 0+$_,$_ } $RB1, $RB2, $WR1, $WR2, $TE1 } } == 5 ) { + say 'all different' } else { say 'some same' };;

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^4: Multiple Conditional Statements
by vsespb (Chaplain) on Sep 11, 2013 at 11:26 UTC
    Yes, that would work.