Help for this page

Select Code to Download


  1. or download this
    some("Foo", "Bar");
    
    sub some {
      my ($one, $two) = @_;
    }
    
  2. or download this
    my @alphabet = ('A' .. 'Z');
    
    ...
    sub some {
      my ($one, @alpha) = @_;
    }