Created
March 7, 2018 13:25
-
-
Save kmdsbng/141bf56adf93f44fbee32f476f41b352 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 double(vararg items: Int): List<Int> { | |
return items.map { it * it } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment