Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    calculation in do_stuff(): 4000
    calculation in dangerous(): 500
    calculation in do_stuff(): 5000
    
  2. or download this
    sub do_stuff1 {
        local $_ = shift;
        chomp;
        say;
    }