http://qs321.pair.com?node_id=250942


in reply to Re: Re: Creating tuples based on sets
in thread Creating tuples based on sets

Yeah, I need the function to fit any of these situations:

my @set1 = qw(A B C D); my @set2 = qw(X Y Z); mk_tuples(@set1, 2); mk_tuples(@set2, 5);
etc...

Here's a side question. How come this doesnt' work in perl?

mk_tuples(["A", "B"], 3);
I can't replace an array with just a list of elements.

Replies are listed 'Best First'.
Re: Re: Re: Re: Creating tuples based on sets
by perlguy (Deacon) on Apr 16, 2003 at 15:50 UTC

    but you can... try this:

    my $arrayref = ["A", "B"]; print join "\n", @$arrayref;