Skip to content

Instantly share code, notes, and snippets.

@vamsitallapudi
Last active March 12, 2018 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vamsitallapudi/10f62d5cf3846e4bba68dedfa261952e to your computer and use it in GitHub Desktop.
Save vamsitallapudi/10f62d5cf3846e4bba68dedfa261952e to your computer and use it in GitHub Desktop.
Run function eg - using Run as scoping function
fun testScope(){
var name = "Hi Vamsi"
run{
var name = "Hello there"
println(name) //Hello there
}
println(name) // Hi Vamsi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment