Created
June 24, 2020 03:47
-
-
Save mksantoki/6420db8ff4c9a1274ef494ff0a83da5e to your computer and use it in GitHub Desktop.
Convert miles to meters kotlin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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