First you define your two macros, then you can use one as a parameter for the other one: example (not tested) #macro SQUARE (A) A*A #end #macro INCR (B) B+1 #end #declare c=SQUARE ( INCR (2) ); // it should give you (2+1)^2=9
Post a reply to this message