5 lines
112 B
Plaintext
5 lines
112 B
Plaintext
|
class NotEqualOperator{
|
||
|
Boolean method(Integer x, Integer y){
|
||
|
return x != y;
|
||
|
}
|
||
|
}
|