17 lines
172 B
Plaintext
Raw Permalink Normal View History

2013-10-18 13:33:46 +02:00
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);
}
}