JavaCompilerCore/app/resources/bytecode/javFiles/Tph5.jav

14 lines
127 B
Plaintext
Raw Normal View History

2023-01-10 13:22:05 +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; }
}