Skip to content

Instantly share code, notes, and snippets.

@hhariri
Created November 17, 2013 22:20
Show Gist options
  • Save hhariri/7519041 to your computer and use it in GitHub Desktop.
Save hhariri/7519041 to your computer and use it in GitHub Desktop.
fun sumOfInts(list: List<Int>): Int {
return list.reduce { (x, y) -> x + y}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment