Help for this page

Select Code to Download


  1. or download this
    sub will_not_be_a_closure {
      my %serial_of = @_;
    ...
    }
    
    will_not_be_a_closure(foo=>"bar")->();
    
  2. or download this
    sub will_be_a_closure {
      my %serial_of = @_;
    ...
    }
    
    will_be_a_closure(foo=>"bar")->();