Help for this page

Select Code to Download


  1. or download this
    $subref=eval 'sub { your code here }'
    die $@ if $@;
    ...
    
  2. or download this
    $subref->();
    
  3. or download this
    eval 'sub mysub { your code here }';
    die $@ if $@;
    
  4. or download this
    mysub();