Skip to content

Round round

The round function rounds a number to the nearest integer. If the number is halfway between two integers, it rounds to the nearest even integer.

 (round 1.5)
2
 (round 1.4)
1
(round [1.2 34])
[1 34]