8 lines
104 B
Plaintext
Raw Normal View History

2015-10-30 16:37:12 +01:00
class Binary2 {
2015-10-29 15:16:19 +01:00
Integer m(Integer x) { return x + x; }
Boolean m(Boolean x) {return x || x; }
}