In article <4ev### [at] michariser>, mri### [at] gmxnet says...
> #macro return1()
> #if (1=1)
> 1
> #end
> #end
This is the problem I guess. It doesn't work this way, I don't know why,
probably a bug.
Do it like this and it should work (at least in MP and 3.5):
#macro return1()
#if(1=1)
#local out=1;
#else // just for the case 1 doesn't equal 1 *g*
#local out=0;
#end
out
#end
Lutz-Peter
Post a reply to this message
|