Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Last active March 30, 2020 16:57
Show Gist options
  • Select an option

  • Save akexorcist/203a52eb304831edf003f6becff06be8 to your computer and use it in GitHub Desktop.

Select an option

Save akexorcist/203a52eb304831edf003f6becff06be8 to your computer and use it in GitHub Desktop.
fun startHere() {
doAnything {
System.out.println("Do something before 2nd thing")
}
}
fun doAnything(block: () -> Unit) {
System.out.println("Do 1st thing")
block()
System.out.println("Do 2nd thing")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment