Skip to content

Instantly share code, notes, and snippets.

@ruwanka
Created March 11, 2018 14:23
Show Gist options
  • Save ruwanka/0465dd4dd7edc1f0f15bc3c0408f99e0 to your computer and use it in GitHub Desktop.
Save ruwanka/0465dd4dd7edc1f0f15bc3c0408f99e0 to your computer and use it in GitHub Desktop.
Kotlin Higher Order functions
fun apply(num: Int, op: (Int) -> Int): Int {
return op(num)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment