JavaTXCompilerInJavaTXNoMaven/resources/bytecode/javFiles/BinaryInMeth.jav

17 lines
191 B
Plaintext
Raw Normal View History

2024-05-02 21:04:07 +00:00
import java.lang.Integer;
import java.lang.Double;
public class BinaryInMeth {
public m(a){
return ++a;
}
public m2(a,b){
return m(a+b);
}
public m3(a) {
return m(++a);
}
}