Code: Select all
Macro Is(Bool)
(0 Or (Bool))
EndMacro
Code: Select all
Macro Is(Bool)
(0 Or (Bool))
EndMacro
Code: Select all
onErrorGoto(?Fred)
Ok, these are the rules:AND51 wrote:Unfortunately, I don't really understand...? Can you explain it in other words again and/or give me an example code?
Code: Select all
onErrorGoto(?Fred)
Code: Select all
Macro XAbs(Exp)
((Exp)*((((Exp)>0) Or 0)*2-1))
EndMacro
a.l = -512874
Debug XAbs(a)
b.l = XAbs(a)
Debug Str(b)