Skip to content

Instantly share code, notes, and snippets.

@GabrielBrasileiro
Last active June 21, 2021 20:12
Show Gist options
  • Save GabrielBrasileiro/3a094994cfb7efa96ede40c8406a2fe9 to your computer and use it in GitHub Desktop.
Save GabrielBrasileiro/3a094994cfb7efa96ede40c8406a2fe9 to your computer and use it in GitHub Desktop.
HighOrderFunctionInline.kt
fun main() {
val descricao = "Inline te dando poderes mágicos"
executarOperacao {
print(descricao)
}
}
fun executarOperacao(operacaoDois: () -> Unit) {
operacaoUm()
operacaoDois()
operacaoTres()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment