Help for this page

Select Code to Download


  1. or download this
    use List::MoreUtils qw/mesh/;
    print join ' ', mesh @ID, @name;
    
  2. or download this
    # you lose the order and every id must be unique
    my %h;
    @h{@ID} = @name ;
    print join ' ', %h;