forked from JavaTX/JavaCompilerCore
5 lines
101 B
Plaintext
5 lines
101 B
Plaintext
|
class AddLongOperator{
|
||
|
Long method(Long x, Long y){
|
||
|
return x + y;
|
||
|
}
|
||
|
}
|