Help for this page

Select Code to Download


  1. or download this
    sub some_func {
        my ($args) = @_;    
    ...
    # sample calls:
    some_func($one_item);
    some_func([qw(bunch of items)]);
    
  2. or download this
    some_func({
        this => $one_item,
        that => [$some, $more, $items],
    });