Hi all

Hi all
since arrays seems to be the new black
I have a question:
In my program, I have a large array (record), where all the data needs to shifted along by 1 
currently I do that in a loop
i.e 
for i:=1 to 100
do
data[i]:=data[i+1];

is there a better way of doing that?
thanks :)

Comments