Initial commit
This commit is contained in:
8
exercises/01_variables/variables4.rs
Normal file
8
exercises/01_variables/variables4.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
// TODO: Fix the compiler error.
|
||||
fn main() {
|
||||
let mut x = 3;
|
||||
println!("Number {x}");
|
||||
|
||||
x = 5; // Don't change this line
|
||||
println!("Number {x}");
|
||||
}
|
||||
Reference in New Issue
Block a user