Help for this page

Select Code to Download


  1. or download this
    a( {-href=>$_ }, \@list )
    
  2. or download this
    for (@list) {
       print a({-href=>$_},$_);
    ...
    
    # or
    print map {a({-href=>$_},$_) } @list;