Guest User

Untitled

a guest
Jun 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. fun startHere() {
  2. var addResult = calculate(10, 3, { x, y ->
  3. x + y
  4. })
  5. ...
  6. }
  7. fun calculate(x: Int,
  8. y: Int,
  9. equation: (x: Int, y: Int) -> Int): Int {
  10. // Do something
  11. return equation(x, y)
  12. }
Add Comment
Please, Sign In to add comment