Skip to content

Instantly share code, notes, and snippets.

View dmitry-udod's full-sized avatar

Dima Udod dmitry-udod

View GitHub Profile
@DavidVaini
DavidVaini / round.go
Created April 9, 2014 19:58
Arggh Golang does not include a round function in the standard math package. So I wrote a quick one.
package main
import (
"log"
"math"
)
func Round(val float64, roundOn float64, places int ) (newVal float64) {
var round float64
pow := math.Pow(10, float64(places))