6 lines
89 B
Go
6 lines
89 B
Go
package conversions
|
|
|
|
func MsToKph(v float32) int {
|
|
return int((3600 * v) / 1000)
|
|
}
|