forked from JavaTX/JavaCompilerCore
5 lines
106 B
Plaintext
5 lines
106 B
Plaintext
|
class OrOperator{
|
||
|
Boolean method(Boolean x, Boolean y){
|
||
|
return x || y;
|
||
|
}
|
||
|
}
|