Skip to content

Instantly share code, notes, and snippets.

@mksantoki
Created June 24, 2020 03:47
Show Gist options
  • Save mksantoki/6420db8ff4c9a1274ef494ff0a83da5e to your computer and use it in GitHub Desktop.
Save mksantoki/6420db8ff4c9a1274ef494ff0a83da5e to your computer and use it in GitHub Desktop.
Convert miles to meters kotlin.
fun getMeters(miles: Double): Double {
return miles * 1609.344
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment