fe:

i var byte

for i=1 to4
dummy[i]=i
next i

[...]

dummy var byte[10]


I got an error, because "dummy" is unknown inside the for-next-loop ...
setting the dummy-declaration at the beginning, all works fine.