macro iif int(r, a ,b, c)
if a
r=b
else
r=c
endif
end macro
r=iif(a>b , c, d)
macro iif int(r, a ,b, c)
'int indicates the type of temp variable r
'r will replace the macro invoked in an expression
'the macro is executed beforehand to resolve the value of r
'a is a boolean / comparative expression
'b and c are return values for r
if a
r=b
else
r=c
endif
end macro
r=iif(a>b , c, d)
'expands to:
'int temp_r
'if a>b
' temp_r=c
'else
' temp_r=d
'endif
'...
'r=temp_r