Down to the little stuff...
- netmaestro
- PureBasic Bullfrog

- Posts: 8452
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
Down to the little stuff...
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
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

- Posts: 1648
- Joined: Mon Sep 20, 2004 3:52 pm
- Contact:
