( @a, @b ) = (1..10, 'a'..'b'); print @a;; 1 2 3 4 5 6 7 8 9 10 a b print @b;; #### someFunction( @a, @b, $c ); #### my ( @groupA, @groupB, $dataRef ) = @_;
## someFunction( @a, @b, $c ); ##
## my ( @groupA, @groupB, $dataRef ) = @_;