JavaTXCompilerInJavaTX/test/bytecode/javFiles/BinaryInMeth.jav

11 lines
113 B
Plaintext
Raw Normal View History

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