Created
February 17, 2026 01:14
-
-
Save skydoves/24fde9d2b606b66cb52d8100cd4593f1 to your computer and use it in GitHub Desktop.
Kotlin Higher-Order Function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fun higherOrderExample(operation: (Int) -> Int): Int { | |
| return operation(10) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment