Maybe a dumb question, but here goes anyway:
Is there a way to copy bit one array to another?

I know this method:

g VAR bit[8]
h VAR bit[8]

for i=0 to 7
h(i)=g(i)
next i

I looked at the ARRAYWRITE command, but it says from one byte array to another.

What would be the result of: h=g ?
I tried the h=g method in my code, but I don't think it is working. If anyone can help...Thanks.