8 lines
120 B
Kotlin
8 lines
120 B
Kotlin
class C(private val s: String?) {
|
|
|
|
{
|
|
if (s == null) {
|
|
System.out.print("null")
|
|
}
|
|
}
|
|
} |