forked from JavaTX/JavaCompilerCore
6 lines
65 B
Plaintext
6 lines
65 B
Plaintext
|
class Cycle {
|
||
|
m(x, y) {
|
||
|
y = x;
|
||
|
x = y;
|
||
|
}
|
||
|
}
|