Another usage,
function test_f {
copyarray .@new_array,getarg(0),getarraysize(getarg(0));
dispbottom .@new_array[0]; // --> 10
dispbottom .@new_array[1]; // --> 20
dispbottom .@new_array[2]; // --> 30
dispbottom .@new_array[3]; // --> 40
dispbottom .@new_array[4]; // --> 50
return;
}
setarray .@array,10,20,30,40,50;
test_f(.@array);