Help for this page

Select Code to Download


  1. or download this
    # store a reference to a sub
    my $coderef = sub
    ...
    $coderef->();
    $coderef->('Bar');
    $coderef->();
    
  2. or download this
    my $code =<<'CODE';
      print shift || "Foo";
    ...
    
    my $coderef = eval"sub{$code}";