``` val x = if (condition) { complexThingOne()...
# announcements
p
Copy code
val x = if (condition) {
    complexThingOne()
    complexThingTwo()
    "test"
} else {
    complexThingThree()
    complexThingFour()
    "testing"
}