(Solved) Why does this throw a MAV error? My whole project stopped working!

Started by hosch, May 27, 2020, 07:45:35

Previous topic - Next topic

hosch

EDIT
Well, you shouldn't name your newly created type after a local variable you have declared in a function and try to access it globally  :-X

_PJ_

It's really important I feel, to keep functions, vars, Types and their instances all very clearly distinctly named.

Like how this can compile and run ... but is terrible.
Global A$ = "A"
Type A
Field A%
End Type
A
Print A
WaitKey()
Function A()
Local A.A = New A
A\A = "A"
End Function