JavaTXCompilerInJavaTXNoMaven/resources/bytecode/javFiles/Tph5.jav

14 lines
127 B
Plaintext
Raw Normal View History

2024-05-02 21:04:07 +00:00
public class Tph5 {
// m(a,b,c){
// a = c;
// b = c;
// return a;
// }
m(x,y){
x = m2(y);
}
m2(y) { return y; }
}