Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    &do_stuff1(1, 2, 3);
    &do_stuff2(1, 2, 3);
    
  2. or download this
    sub do_stuff1 {
        shift;   #val into $_
        chomp;
        say;
    }