Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created June 4, 2018 08:42
Show Gist options
  • Save sajjadyousefnia/cdb437cfa9760ec2f261b352836fddd4 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/cdb437cfa9760ec2f261b352836fddd4 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
}
}
println("End of surroundingFunction()")
}
surroundingFunction() // nothing happened
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment