JavaTXCompilerInJavaTX/test/bytecode/operators/AddLongOperator.jav

5 lines
101 B
Plaintext
Raw Normal View History

class AddLongOperator{
Long method(Long x, Long y){
return x + y;
}
}