mirror of
https://github.com/notohh/rustlings.git
synced 2025-07-15 11:45:34 -04:00
8 lines
121 B
Rust
8 lines
121 B
Rust
// Make me compile!
|
|
|
|
fn main() {
|
|
let x = 3;
|
|
println!("Number {}", x);
|
|
x = 5;
|
|
println!("Number {}", x);
|
|
}
|