mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
11 lines
126 B
Kotlin
Vendored
11 lines
126 B
Kotlin
Vendored
import a.*
|
|
import b.*
|
|
import c.*
|
|
|
|
fun usage(): String {
|
|
val a = A()
|
|
val b = B()
|
|
val c = C()
|
|
return "$a$b$c"
|
|
}
|