Hey all,
I have a fairly simple issue. I'm passing a subroutine an unknown number of variables in groups of three. For example, I might be passing it:
mySub($hello, 5, $goodbye, 'asdf', 6, 'fdsa');
or
mySub('asdf, 6, 'fdsa');
I figured I'd be slick and arrange the function to take the...