Help for this page

Select Code to Download


  1. or download this
    sub mymap (&@) { my ( $code, @list ) = @_; map &$code, @list }
    
    ...
    reset_cbs();
    print(( map   &{ get_cb() }, qw( a b c d ) ), "|");
    print(( map   &{ get_cb() }, qw( a b c d ) ), "\n");
    
  2. or download this
    abcd|ABCD
    aBcD|aBcD