Skip to content

Instantly share code, notes, and snippets.

@stephenwithav
Created September 7, 2016 22:48
Show Gist options
  • Save stephenwithav/b0d25868cc21754096262539334a22a7 to your computer and use it in GitHub Desktop.
Save stephenwithav/b0d25868cc21754096262539334a22a7 to your computer and use it in GitHub Desktop.
round
func Round(f float64) float64 {
return math.Floor(f+.5)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment