class ExtensionExample() {
var name: String? = null
}
fun Any?.toString() = if (this == null) "Value is null" else "Value is not null"
fun main(args: Array<String>) {
println(ExtensionExample().name.toString())
}
Y2xhc3MgRXh0ZW5zaW9uRXhhbXBsZSgpIHsKICAgIHZhciBuYW1lOiBTdHJpbmc/ID0gbnVsbAp9CmZ1biBBbnk/LnRvU3RyaW5nKCkgPSBpZiAodGhpcyA9PSBudWxsKSAiVmFsdWUgaXMgbnVsbCIgZWxzZSAiVmFsdWUgaXMgbm90IG51bGwiCmZ1biBtYWluKGFyZ3M6IEFycmF5PFN0cmluZz4pIHsKICAgIHByaW50bG4oRXh0ZW5zaW9uRXhhbXBsZSgpLm5hbWUudG9TdHJpbmcoKSkKfQ==