Help for this page

Select Code to Download


  1. or download this
    for ( @nvalue ) {
      print "$_\n$_[0]\n$_[0]->[0]\n";
    ...
      print join(", ",$_[$e]->[$d]);
    }
    print "\n";
    
  2. or download this
    for ( @nvalue ) {
      print "$_\n$_->[0]\n$_->[0][0]\n";
    ...
      print join(", ",$_->[$e][$d]);  # XXX: join() ?
    }
    print "\n";
    
  3. or download this
    $_[0]
    
  4. or download this
    $_->[0]