T() is a macro
I have many things like:
MACRODOWN(T(P), T(E), T(X), T(R), T(T), T(H), T(A), T(F))
MACRODOWN(T(H), T(A), T(F))
MACRODOWN(T(Z), T(A))
I'd like to define a macro that would work like this:
MACRODOWN(TT(P,E,X,R,T,H,A,F))
MACRODOWN(TT(H,A,F))
MACRODOWN(TT(Z,A))
And they would exand, of course, to the first macros above. Is this possible, and if so, how?