Created
March 19, 2019 14:43
-
-
Save sajjadyousefnia/92aa7efaec30f03aae458dc9e6db5c70 to your computer and use it in GitHub Desktop.
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 <T : Number> oneHalf(value: T): Double { | |
return value.toDouble() / 2.0 | |
} | |
>>> println(oneHalf(3)) | |
1.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment