fun main(args: Array) { val text : String? = "Hello World!" if (text == null) { return } println(text) }