diff options
Diffstat (limited to 'exercises/01_variables/variables4.rs')
| -rw-r--r-- | exercises/01_variables/variables4.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/01_variables/variables4.rs b/exercises/01_variables/variables4.rs index 6c138b1..90d4ef0 100644 --- a/exercises/01_variables/variables4.rs +++ b/exercises/01_variables/variables4.rs @@ -1,6 +1,6 @@ // TODO: Fix the compiler error. fn main() { - let x = 3; + let mut x = 3; println!("Number {x}"); x = 5; // Don't change this line |
