Is -1 > 7 ?

Tobias Pankrath tobias at pankrath.net
Fri Aug 9 08:15:47 PDT 2013


On Friday, 9 August 2013 at 15:11:42 UTC, michaelc37 wrote:
> forgive me if i'm doing something stupid, i'm extremely tired 
> and trying to avoid drinking coffee.
>
> void main()
> {
> 	int[] arr = [0, 1, 2, 3, 4, 5, 6];
>
> 	//check 1
> 	if (-1 > arr.length)
> 		writefln("WTF -> %d is greater than %d ????", -1, arr.length);
> 	else
> 		writefln("GOOD -> %d is NOT greater than %d", -1, arr.length);
> }
>
> here is my output:
> WTF -> -1 is greater than 7 ????

length is size_t, unsigned 64bit.


More information about the Digitalmars-d-learn mailing list