5 lines
95 B
Rust
5 lines
95 B
Rust
fn main() {
|
|
let mut x = 3; let mut y = 7;
|
|
x <-> y; assert (x == 7); assert (y == 3);
|
|
}
|