Skip to content

Instantly share code, notes, and snippets.

@kmdsbng
Created March 7, 2018 13:25
Show Gist options
  • Save kmdsbng/141bf56adf93f44fbee32f476f41b352 to your computer and use it in GitHub Desktop.
Save kmdsbng/141bf56adf93f44fbee32f476f41b352 to your computer and use it in GitHub Desktop.
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