in reply to Returning multiple values from a subroutine

Hi, You are returning an Array reference and scalar reference, but the value get assigned into an array, So both the returning reference saved into @subs array

.

change the code as

my ( $subs, $SubId ) = getsubsFromAcct( $currAcct ); my $length = @$subs; print ("No of subs : $length and subs are @$subs");

Replies are listed 'Best First'.
Re^2: Returning multiple values from a subroutine
by rkrish (Acolyte) on Dec 28, 2012 at 12:33 UTC

    Thanks for the quick reply :) it worked

      I'm glad it does. However, what I find more interesting is whether you understand why it works. References can be a tough subject to grasp. But you do, it's an immensely powerful tool that you should be glad to have in your toolbox. So are you just taking ree's solution as-is, happy it solves your problem, or do you see what he did and how that works?