your code should be: ``` fun main(args: Array<S...
# announcements
v
your code should be:
Copy code
fun main(args: Array<String>) {
    val b: String? = null

    if(b == null) return
    println("This will have exited the method and will not print $b")
}