Skip to content

comments in macro processor are interpreted by macroprocessor

a .mod file with the lines

@#define x = 1
@{x}//@{x}
@{x}/*@{x}
*/

results in the macro expanded .mod file

1//1
1/*1
*/

It should be

1//@{x}
1/*@{x}
*/