9 lines
133 B
Plaintext
Raw Normal View History

2018-04-11 13:55:32 +02:00
import java.lang.Integer;
import java.lang.Boolean;
class OL {
m(Integer x) { return x + x; }
m(Boolean x) {return x || x; }
}