JavaTXCompilerInJavaTX/test/bytecode/operators/AddDoubleOperator.jav

5 lines
109 B
Plaintext
Raw Normal View History

class AddDoubleOperator{
Double method(Double x, Double y){
return x + y;
}
}