forked from JavaTX/JavaCompilerCore
17 lines
172 B
Plaintext
17 lines
172 B
Plaintext
|
class OL {
|
||
|
|
||
|
Integer m(Integer x) { return x + x; }
|
||
|
|
||
|
Boolean m(Boolean x) {return x || x; }
|
||
|
}
|
||
|
|
||
|
class Main {
|
||
|
|
||
|
main(x) {
|
||
|
ol;
|
||
|
ol = new OL();
|
||
|
return ol.m(x);
|
||
|
}
|
||
|
|
||
|
}
|