Kotlin Unwrap an Optional Variable

val name: String? = "Cecil"
name?.let {
    println(it)
} ?: run {
    println("name is null")
}