Help for this page

Select Code to Download


  1. or download this
    (sub {... magic(...) ... )->(args)
    
  2. or download this
    use strict;
    {
        my $coderef;
        ($coderef = sub { ... $coderef->(...) ...)->(args);
    }
    
  3. or download this
    use strict; 
    
    ...
        my $coderef;
        ($coderef = sub {return unless $_[0] > 0; print "$_[0]\n"; $codere
    +f->($_[0]-1)})->(4);
    }