Sorry, my brain has gone on vacation...<br><br>Whats the easiest way to grab two parameters at a time, that were passed<br>into a subroutine?<br><br>ie.<br><br>mysub('a', 1, 'b', 2, 'c', 3);<br><br>
sub mysub {<br> while (@_) { push @letters, shift; push @nums, shift; }<br>}<br><br>