|  |  | #macro Test (optional A, optional B, optional C, optional D)
 #debug "Start macro Test \n"
 #ifndef (local.A)
  #debug "No parameters defined \n"
 #end
 #ifdef (local.A)
  #macro _Test (A, B, optional C, optional D)
  #end // end macro _Test
 #end
 #debug "End macro Test \n"
#end // end macro Test
With Test (1, 2) I get "expected 4 but only found 2", or
with Test (1, 2)
"expected 8 but only found 2"
 Post a reply to this message
 |  |