diff options
Diffstat (limited to 'exercises/01_variables/variables2.rs')
| -rw-r--r-- | exercises/01_variables/variables2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/01_variables/variables2.rs b/exercises/01_variables/variables2.rs index e2a3603..e2fd5d0 100644 --- a/exercises/01_variables/variables2.rs +++ b/exercises/01_variables/variables2.rs @@ -1,6 +1,6 @@ fn main() { // TODO: Change the line below to fix the compiler error. - let x; + let x = 10; if x == 10 { println!("x is ten!"); |
