Help for this page

Select Code to Download


  1. or download this
    sub example {
        my $number = shift;
    ...
        print "Still here\n";
      
    }
    
  2. or download this
       my $value = eval {
           # Do stuff;
           return 4;
       };