Help for this page

Select Code to Download


  1. or download this
    sub SUBNAME($@;\%)
  2. or download this
    sub mysub($@\%) {
        my ($one, @two, $ref) = @_;
    ...
    }
    
    mysub('a','b','c','d');
    
  3. or download this
    b c d
    
  4. or download this
    mysub('a');