Skip to content

Instantly share code, notes, and snippets.

@JensRantil
Forked from davidvthecoder/round.go
Last active August 29, 2015 14:22
Show Gist options
  • Save JensRantil/e464829ad68a07795ddf to your computer and use it in GitHub Desktop.
Save JensRantil/e464829ad68a07795ddf to your computer and use it in GitHub Desktop.
package main
import (
"log"
"math"
)
func Round(val float64) float64 {
return math.Floor(val + 0.5)
}
func main() {
log.Println(Round(123.555555))
log.Println(Round(123.558))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment