Help for this page

Select Code to Download


  1. or download this
      sub a { my ($sub) = @_; $sub->(4) }
      sub b { print @_ };
    
      a(\&b);
    
  2. or download this
      a( sub {print @_} )