6 lines
79 B
Plaintext
6 lines
79 B
Plaintext
|
public class Cycle {
|
||
|
public m(x, y) {
|
||
|
y = x;
|
||
|
x = y;
|
||
|
}
|
||
|
}
|