Help for this page

Select Code to Download


  1. or download this
    sub myprint { print "MYPRINT: ", @_; }
    
    ...
      : \&myprint;
    
    $printfunc->("hello world\n");
    
  2. or download this
    my $printfunc = $condition
      ? sub { print @_; }
      : sub { print "MYPRINT: ", @_; }