forked from JavaTX/JavaCompilerCore
9 lines
133 B
Plaintext
9 lines
133 B
Plaintext
|
import java.lang.Integer;
|
||
|
import java.lang.Boolean;
|
||
|
|
||
|
class OL {
|
||
|
|
||
|
m(Integer x) { return x + x; }
|
||
|
|
||
|
m(Boolean x) {return x || x; }
|
||
|
}
|