Unsigned vars and indices for all vars
Posted: Tue Feb 19, 2008 10:20 pm
Removed.
http://www.purebasic.com
https://www.purebasic.fr/english/
Although I agree with the request, I still think there are some casting problems. What would you do about this? Convert ulong to a long or long to an ulong?hellhound66 wrote: Fred posted, that there would be a casting problem. I say no. It is alway clear, what type a variable has, so it is clear, what castings need to be done.
Code: Select all
ulong.ul = 4294966000
long.l = -10000
Debug ulong
Debug long
If ulong > long
; And we have a problem...
EndIf