William F Pokorny <ano### [at] anonymousorg> wrote:
#macro Add(_immuInt, otherInt)
......
#end
#declare Res = Add(99,1)
#declare _immu = 99;
#declare Res = Add(_immu, 1)
In the second use of the macro, would it be required that the 'referenced' value
is also declared immutable?
ingo