11 lines
88 B
Plaintext
Raw Normal View History

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