in reply to MCE seemingly stray array in sample code for Strassen's algorithm
G'day cormanaz,
@p is a global variable visible to all the subroutines (i.e. in scope). It's used in strassen() as well as store_result() (as you pointed out).
Here's a simplified example of what you're seeing. Both subroutines have access to the global array @nums:
$ perl -Mstrict -Mwarnings -E ' say "Hello, world!"; populate_nums(); report_nums(); my @nums; sub populate_nums { push @nums => 0 .. 9 } sub report_nums { say "@nums" } ' Hello, world! 0 1 2 3 4 5 6 7 8 9
Here, only populate_nums() has access:
$ perl -Mstrict -Mwarnings -E ' say "Hello, world!"; populate_nums(); report_nums(); my @nums; sub populate_nums { push @nums => 0 .. 9 } sub report_nums { my @nums; say "@nums" } ' Hello, world!
Perhaps take a look at perlintro - Variable scoping; and follow-up with perlsub - Private Variables via my().
-- Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: MCE seemingly stray array in sample code for Strassen's algorithm
by BillKSmith (Monsignor) on Apr 14, 2013 at 02:33 UTC | |
by NetWallah (Canon) on Apr 14, 2013 at 05:32 UTC | |
|
Re^2: MCE seemingly stray array in sample code for Strassen's algorithm
by cormanaz (Deacon) on Apr 14, 2013 at 12:09 UTC | |
by marioroy (Prior) on Dec 13, 2014 at 02:51 UTC |