[racket] Rounding

From: Eric Nadeau (nado18 at gmail.com)
Date: Sat Mar 16 10:21:57 EDT 2013

Hi,

I was having problems with a mathematical application I'm writing and narrowed it down to:

	(round 0.5)
	(round (/ 1 2))
	(round 1.5)
	(round (/ 3 2))

giving me

	0.0
	0
	2.0
	2

Since when is round 0.5 not giving 1?!

Cheers,
Eric

Posted on the users mailing list.