17 lines
240 B
Kotlin
17 lines
240 B
Kotlin
class Library {
|
|
class object {
|
|
fun call() {
|
|
}
|
|
|
|
fun getString(): String {
|
|
return ""
|
|
}
|
|
}
|
|
}
|
|
|
|
class User {
|
|
fun main() {
|
|
Library.call()
|
|
Library.getString().isEmpty()
|
|
}
|
|
} |