forked from JavaTX/JavaCompilerCore
8 lines
104 B
Plaintext
8 lines
104 B
Plaintext
|
|
||
|
class Binary2 {
|
||
|
|
||
|
Integer m(Integer x) { return x + x; }
|
||
|
|
||
|
Boolean m(Boolean x) {return x || x; }
|
||
|
|
||
|
}
|