Help for this page

Select Code to Download


  1. or download this
    sub alist_get {
      my $k = shift;
      for (@_) { return $_ if $_->[0] eq $k }
    ...
    }
    
    push @{alist_get('two', @arr)->[1]}, 222;