5 lines
109 B
Plaintext
5 lines
109 B
Plaintext
|
class AddDoubleOperator{
|
||
|
Double method(Double x, Double y){
|
||
|
return x + y;
|
||
|
}
|
||
|
}
|