Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    $b[1]=@d;
    my @e= $b[1];       # i think you want b as 2-D array
    print "<$e[0]>\n";
    
  2. or download this
    Odd number of elements in anonymous hash at nov line 7.<1>
  3. or download this
    use strict;
    use warnings;
    ...
    $b[1]=\@d;
    my @e= @{$b[1]};       # $b[1] is an array ref so use @{} to get back 
    +the list.
    print "<$e[0]>\n";
    
  4. or download this
    <yy>