|
|
LightBeam wrote:
>>
> That neat and interresting. Recursives macros are not in my
possibilities at this time... maybe someday... ;-)
#macro Recurse ( Inter )
#debug concat ( "\n\n\n payload ", str ( Inter,0,0) )
#if ( Inter )
Recurse ( Inter - 1 )
#end
#end
Recurse ( 5 )
Post a reply to this message
|
|