Down to the little stuff...

For everything that's not in any way related to PureBasic. General chat etc...
User avatar
netmaestro
PureBasic Bullfrog
PureBasic Bullfrog
Posts: 8452
Joined: Wed Jul 06, 2005 5:42 am
Location: Fort Nelson, BC, Canada

Down to the little stuff...

Post 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? ...
BERESHEIT
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post 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
dracflamloc
Addict
Addict
Posts: 1648
Joined: Mon Sep 20, 2004 3:52 pm
Contact:

Post by dracflamloc »

Expect a few RC versions too.
Post Reply