Help for this page

Select Code to Download


  1. or download this
    sub foo(&);
    foo { ... };
    
  2. or download this
    foo(sub { ... });
    
  3. or download this
    use strict;
    use warnings;
    ...
    map_tester();
    print("\n");
    my_map_tester();
    
  4. or download this
    pre
    in
    ...
    pre
    in
    post
    
  5. or download this
    my @anon_list;
    for (@a) {
        push @anon_list, foo();
    }
    @b = @anon_list;