From: Tiziano Merzi Date: 2008-01-06T16:27:11+09:00 Subject: Re: Pushing things Arrays Wally Terrible wrote: > I've been learning Ruby and have done a couple of the quizes on the yes newCcnumber = [] newCcnumber = prefix now newCcnumber and prefix refer the same array newCcnumber = [] newCcnumber.concat prefix # append the elements of prefix to newCcnumber newCcnumber and prefix refer to different array tiziano -- Posted via http://www.ruby-forum.com/.