JavaCompilerCore/resources/bytecode/javFiles/BinaryInMeth.jav

17 lines
170 B
Java

import java.lang.Integer;
import java.lang.Double;
public class BinaryInMeth {
m(a){
return ++a;
}
m2(a,b){
return m(a+b);
}
m3(a) {
return m(++a);
}
}