Does Kotlin support expression blocks? ``` val x =...
# announcements
z
Does Kotlin support expression blocks?
Copy code
val x = run {
	if (condition) {
		return "test"
	} else {
		return "testing"
	}
}