Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Last active March 30, 2020 16:59
Show Gist options
  • Select an option

  • Save akexorcist/636136232e92cb7a70e3bddc6e7830fc to your computer and use it in GitHub Desktop.

Select an option

Save akexorcist/636136232e92cb7a70e3bddc6e7830fc to your computer and use it in GitHub Desktop.
fun startHere() {
var addResult = calculate(10, 3, { x, y ->
x + y
})
...
}
fun calculate(x: Int,
y: Int,
equation: (x: Int, y: Int) -> Int): Int {
// Do something
return equation(x, y)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment