Help for this page

Select Code to Download


  1. or download this
    sub xxx {
        # this code does foo and bar and baz
       [many lines of code]
    }
    
  2. or download this
    sub xxx {
        do_foo_and_bar_and_baz();
    ...
        # no explicit comment needed, since sub has clear name
        [many lines of code]
    }