Skip to content

Instantly share code, notes, and snippets.

@birojow
Last active May 13, 2024 22:00
Show Gist options
  • Save birojow/85b8aabb22a55c447f4f73556dd38497 to your computer and use it in GitHub Desktop.
Save birojow/85b8aabb22a55c447f4f73556dd38497 to your computer and use it in GitHub Desktop.
fun someFunction(
lambda: (String) -> Unit
) {
// TODO
}
fun main() {
someFunction({ print(it) })
someFunction {
print(it)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment