Skip to content

Instantly share code, notes, and snippets.

@chao2zhang
Last active November 26, 2019 06:59
Show Gist options
  • Save chao2zhang/1d3835e67c8e273c5e3dd52312570df3 to your computer and use it in GitHub Desktop.
Save chao2zhang/1d3835e67c8e273c5e3dd52312570df3 to your computer and use it in GitHub Desktop.
KotlinApp.kt : Kotlin -> Kotlin
fun invokeKotlinFunction(id: Int, f: KotlinFunction) = f(id)
fun useKotlinFunction() {
val kotlinFunction : KotlinFunction = { id -> id % 2 == 0 }
invokeKotlinFunction(3) { id -> id % 2 == 0 }
invokeKotlinFunction(4) { isEven(it) }
invokeKotlinFunction(4, ::isEven)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment