in reply to Re^3: Referencing/returning array of hashes from sub
in thread Referencing/returning array of hashes from sub
my (@date, ...) = (@$date_ref)
my @date = @$date_ref; my @F_SCORE = @$F_SCORE_ref; my @F_SCORE_BOX = @$F_SCORE_BOX_ref; my @F_ROA = @$F_ROA_ref; my @F_CFO= @$F_CFO_ref; my @F_dROA = @$F_dROA; my @F_ACCRUAL = @$F_ACCRUAL_ref; my @F_dLEVER = @$F_dLEVER_ref; my @F_dLIQUID = @$F_dLIQUID_ref; my @F_EQOFFER = @$F_EQOFFER_ref; my @F_dTURN = @$F_dTURN_ref; my @F_dMARGIN = @$F_dMARGIN_ref;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Referencing/returning array of hashes from sub
by chromatic (Archbishop) on Jun 08, 2011 at 21:23 UTC | |
|
Re^5: Referencing/returning array of hashes from sub
by planetscape (Chancellor) on Jun 09, 2011 at 03:57 UTC |