9 lines
134 B
Kotlin
9 lines
134 B
Kotlin
import server.*;
|
|
|
|
class Client {
|
|
public fun foo() {
|
|
Server().processRequest()
|
|
ServerEx().processRequest()
|
|
}
|
|
}
|