Guest User

Untitled

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