15 lines
144 B
Plaintext
Raw Normal View History

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