in reply to Help understand BEGIN routine
Is this simpler?
BEGIN { my @array_containing_u = ("u"); my @array_containing_v = ("v"); my @array_starting_with_or = ("or"); push @array_starting_with_or, \@array_containing_u; push @array_starting_with_or, \@array_containing_v; CreateCmdLineVar('$Dut', \@array_starting_with_or); my @another_array_containing_v = ("v"); CreatejeVar('$CM_etadId', \@another_array_containing_v, undef); my @yet_another_array_containing_v = ("v"); CreatejeVar('$ACM_Id', \@yet_another_array_containing_v, undef); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help understand BEGIN routine
by Anonymous Monk on Mar 11, 2012 at 22:52 UTC | |
by Anonymous Monk on Mar 12, 2012 at 06:23 UTC |