The simple argument I seek works a little like thisโ
- Check if variable exists using CHKVAR
- If variable name exists, pass its reference into function
DEF FUNC A
REM Do something with A
END
N=0
R=CHKVAR("A"+STR$(N))
IF(R)THEN
FUNC VAR("A"+STR$(N))
ENDIFI'm just really at a loss of how this can be done. 