Help for this page

Select Code to Download


  1. or download this
    sub print_summary {
        my ($type) = @_;
    ...
    }
    # ... later ...
    print_summary("world");
    
  2. or download this
    sub summary {
        my ($type) = @_;
    ...
    # ... later ...
    print summary("world");
    print summary("hello");