8 lines
143 B
Plaintext
Raw Normal View History

2023-10-17 12:26:40 +02:00
class RecursionCond {
m(a, b, c) {
if (1 == 2) {
b = m(a, b);
c = m(a, b);
} else return a;
}
}