Is it possible to write a program which sees and can store the underlying name of an unexpanded macro without any additional syntax on the macro itself?
By way of example you would have a program which was invoked as
where the program could see and store the name "mymacro" as well as it's underlying value "macro_value" at `1' ? I know it's probably improper, but it would be nice to do for a little internal workflow program I have.
By way of example you would have a program which was invoked as
Code:
local mymacro macro_value myprog `mymacro'
Comment