mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
165 B
Java
Vendored
9 lines
165 B
Java
Vendored
public interface Simple {
|
|
default String test(String s) {
|
|
return s + "K";
|
|
}
|
|
|
|
static String testStatic(String s) {
|
|
return s + "K";
|
|
}
|
|
} |