5 lines
110 B
Plaintext
Raw Permalink Normal View History

class GreaterOperator{
Boolean method(Integer x, Integer y){
return x > y;
}
}