Is PBP not able to solve forward-references to variables (Later declared inside the source) ?
Printable View
Is PBP not able to solve forward-references to variables (Later declared inside the source) ?
you mean ???
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.