5 lines
59 B
Rust
5 lines
59 B
Rust
|
fn main(){
|
||
|
let (x,y) = (1,2);
|
||
|
|
||
|
println!("{}", x);
|
||
|
}
|