Skip to content

Instantly share code, notes, and snippets.

@Audhil
Last active February 27, 2020 07:48
Show Gist options
  • Save Audhil/c2b1c5cc936e84a63fee41afe5408e7b to your computer and use it in GitHub Desktop.
Save Audhil/c2b1c5cc936e84a63fee41afe5408e7b to your computer and use it in GitHub Desktop.
kotlin scope functions
fun main() {
val val1 = run {
"function"
// true
}
val val2 = run {
// "function"
true
}
println(val1) // function
println(val2) // true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment