6 lines
65 B
Plaintext
Raw Normal View History

2024-05-02 23:04:07 +02:00
class Cycle {
m(x, y) {
y = x;
x = y;
}
}