Also, I think my use of the term "nested" may be wrong?
Code: Select all
param = 0
Macro confuse_me(funcname, param)
Procedure funcname()
;Protected param.l
;param = 1
If param = 10
Debug "param equal to 10."
Else
Debug "param not equal to 10."
EndIf
EndProcedure
funcname()
EndMacro
confuse_me(nested, 10)


