
yaniv_av
Novice
Dec 16, 2002, 1:55 PM
Post #1 of 3
(340 views)
|
|
What's wrong with that code ???
|
Can't Post
|
|
@groups=(1,2,3,4); ----------------------- I want @g1 to get (1,2) and @g2 to get (3,4). but when I write this it won't work: (@g1,@g2)=(@groups[0,1],@groups[2,3]); Why ??? (This is work: my @g1=@groups[0,1]; my @g2=@groups[2,3];)
|