forked from JavaTX/JavaCompilerCore
6fc412d949
This reverts commit711c0d2f79
, reversing changes made to2b47b8e5bf
.
20 lines
221 B
Java
20 lines
221 B
Java
|
|
class OL {
|
|
|
|
java.lang.Float m(java.lang.Float x) { return x + x; }
|
|
|
|
java.lang.Boolean m(java.lang.Boolean x) {return x || x; }
|
|
}
|
|
|
|
|
|
|
|
class Main {
|
|
|
|
main(x) {
|
|
ol;
|
|
ol = new OL();
|
|
return ol.m(x);
|
|
}
|
|
|
|
}
|