Say I have a variable name stored in string S$ (S$="VARNAME%") and I'm in an OPTION STRICT program. Is there a way to initialize VARNAME% using string S$ as a reference? I'm trying to change the way objects work in N# to eliminate several bugs and improve performance, but I can't quite figure this out. I've tried several things including
VAR VAR(S$)to putting VARNAME% as a string literal to even see if I could initialize it in the first place
VAR "VARNAME%"but so far, nothing has worked. Syntax errors. :/ If only the VAR function was actually documented...