mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
14 lines
243 B
Java
14 lines
243 B
Java
class JavaClass {
|
|
int get(Runnable i1, Runnable i2) {
|
|
i1.run();
|
|
i2.run();
|
|
return 239;
|
|
}
|
|
|
|
void set(Runnable i1, Runnable i2, Runnable value) {
|
|
i1.run();
|
|
i2.run();
|
|
value.run();
|
|
}
|
|
}
|