...as local or function parameters container
is that even possible ?
like
macro myMacro(arg1,arg2,arg3)
i hope that my question is not stupid ;D
Macro functions with a defined return type and parameters look like this:
macro inlimits int(r, a,min,max)
=================================
r=-1
if a<min then r=0
if a>max then r=0
end macro
print inlimits(20,10,30) '-1
print inlimits(31,10,30) '0
thanks Charles
I will try to use it