Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created June 6, 2018 09:05
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 sajjadyousefnia/2cd4063c8b1e484d5f96e276b1ef2f06 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/2cd4063c8b1e484d5f96e276b1ef2f06 to your computer and use it in GitHub Desktop.
fun surroundingFunction() {
val intList = listOf(1, 2, 3, 4, 5)
intList.forEach {
if (it % 2 == 0) {
return@forEach
}
}
println("End of surroundingFunction()") // Now, it will execute
}
surroundingFunction() // print "End of surroundingFunction()"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment