Created
June 4, 2018 08:51
-
-
Save sajjadyousefnia/e1f53d12c060b5700b70234aae864bf7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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