Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to make "is not?"
#1
How to make "is not"? :?:

If I have:
...
if i = w; out "i = w"; goto h


if i < w
xxx ;goto w
if i > w
goto w

how to explain
"IS NOT"?
instead of > and <?

That would follow:

If i IS NOT w
goto w
if i = w
goto h

example just to visualize, without function.

can you help me?
#2
I think thats what you are asking! Try it!

Macro ( Macro )
Code:
Copy      Help
int a b

a=5
b=10

out
if a != b
,out "Doesnt Equal"
else
,out "Does Equal"
,
;and

;int a b
;
;a=5
;b=5
;
;out
;if a != b

,;out "Doesnt Equal"
;else

,;out "Does Equal"
#3

Look under the Quick Macros reference for
if, for more information on if and else .
Taking on Quick Macros one day at a time


Forum Jump:


Users browsing this thread: 1 Guest(s)