diff options
Diffstat (limited to 'solutions/01_variables')
| -rw-r--r-- | solutions/01_variables/variables3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solutions/01_variables/variables3.rs b/solutions/01_variables/variables3.rs index b493917..15f6557 100644 --- a/solutions/01_variables/variables3.rs +++ b/solutions/01_variables/variables3.rs @@ -7,7 +7,7 @@ fn main() { println!("Number {x}"); - // It possible to declare a variable and initialize it later. + // It is possible to declare a variable and initialize it later. // But it can't be used before initialization. let y: i32; y = 42; |
