Dear All,
my question is regarding to the following paragraph in the documentation:

Specifically, can anyone illustrate any possibility to use curly braces with the local macros? (let's say to clarify meaning).
I have tried the following, which doesn't seem to be successful:
Results in:
Use of curly braces with global macros has been illustrated in the manual, but not with the local macros, afaik.
Thank you very much, Sergiy
my question is regarding to the following paragraph in the documentation:
Specifically, can anyone illustrate any possibility to use curly braces with the local macros? (let's say to clarify meaning).
I have tried the following, which doesn't seem to be successful:
Code:
local t=9999 display `t' display `{t}' display {`t'}
Code:
. local t=9999 . . display `t' 9999 . display `{t}' . display {`t'} invalid syntax r(198); end of do-file r(198);
Thank you very much, Sergiy
Comment