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(&#39;a&#39;, 1, &#39;b&#39;, 2, &#39;c&#39;, 3);<br><br>
sub mysub {<br>&nbsp;&nbsp; while (@_) { push @letters, shift; push @nums, shift; }<br>}<br><br>