Skip to content

Instantly share code, notes, and snippets.

@hhariri
Created August 6, 2013 10:29
Show Gist options
  • Save hhariri/6163420 to your computer and use it in GitHub Desktop.
Save hhariri/6163420 to your computer and use it in GitHub Desktop.
fun takeAFunc(func: (String) -> Unit) {
}
fun theFunc(input: String) {
}
fun useAFunc() {
takeAFunc(::theFunc)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment