Code: Select all
Integer = 0.6 ; rounded to 1
Check(Integer * 2 = 2) I am puzzled...
Code: Select all
Integer = 0.6 ; rounded to 1
Check(Integer * 2 = 2) Code: Select all
Macro Check(a)
Bool(a)
EndMacro
Integer = 0.6 ; rounded to 1
Debug Check(Integer * 2 = 2)
Debug Check(Integer * 2 = 3)
Code: Select all
Define.i a0,a1,a2,a3,a4,a5,a6,a7,a8,a9
Define.i x
Macro A(x)
a#x=x
EndMacro
A(7)
Debug a0
Debug a1
Debug a2
Debug a3
Debug a4
Debug a5
Debug a6
Debug a7
Debug a8
Debug a9Code: Select all
Define.i a0,a1,a2,a3,a4,a5,a6,a7,a8,a9
Define.i x
Macro A(x)
a#x=x
EndMacro
x=7
A(x)
Debug a0
Debug a1
Debug a2
Debug a3
Debug a4
Debug a5
Debug a6
Debug a7
Debug a8
Debug a9