8 lines
143 B
Plaintext
Raw Normal View History

2024-05-02 23:04:07 +02:00
class RecursionCond {
m(a, b, c) {
if (1 == 2) {
b = m(a, b);
c = m(a, b);
} else return a;
}
}