6 lines
65 B
Plaintext
Raw Normal View History

2022-07-03 15:17:12 +02:00
class Cycle {
m(x, y) {
y = x;
x = y;
}
}