Page 1 of 1

Down to the little stuff...

Posted: Wed Apr 05, 2006 10:48 am
by netmaestro
Checking out the Bug Reports forum lately, it seems like most of the big stuff is fixed, we're down to little wee stuff now. Minor tweaking here and there, I bet we'll see a release before too long... maybe one more beta? ...

Posted: Wed Apr 05, 2006 6:15 pm
by Trond
Well although there have been tremendous improvements there are still a few things left:

Code: Select all

value = 0 
quad.q = 2
value = value - 20 -- quad
Debug "quad: " + Str(value) ;wrong

value = 0 
float.f = 2
value = value - 20 -- float
Debug "float: " + Str(value)

value = 0 
value = value - 20 -- 2
Debug "constant: " + Str(value)

Code: Select all

If 1 And 1 Or 0 ; Absolutely illogical
  Debug 1
EndIf 
If (1 And 1) Or 0 
  Debug 2 
EndIf 
If 1 And (1 Or 0) 
  Debug 3 
EndIf

If 0 And Not 0 ; Absolutely illogical
  Debug "0 AND x was true??" 
EndIf

Posted: Wed Apr 05, 2006 6:23 pm
by dracflamloc
Expect a few RC versions too.