sub SUBNAME($@;\%) #### sub mysub($@\%) { my ($one, @two, $ref) = @_; print "@two\n"; } mysub('a','b','c','d'); #### b c d #### mysub('a');