JavaTXCompilerInJavaTX/test/bytecode/Methods.jav
2018-02-21 11:44:03 +01:00

14 lines
140 B
Java

import java.lang.Integer;
class Methods {
m(a,b){
var c=a+b;
return c;
}
method2(x){
Integer i = this.m(x,2);
return i;
}
}