diff options
Diffstat (limited to 'solutions/01_variables/variables1.rs')
| -rw-r--r-- | solutions/01_variables/variables1.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/solutions/01_variables/variables1.rs b/solutions/01_variables/variables1.rs index 4e18198..58d046b 100644 --- a/solutions/01_variables/variables1.rs +++ b/solutions/01_variables/variables1.rs @@ -1 +1,6 @@ -// Solutions will be available before the stable release. Thank you for testing the beta version 🥰 +fn main() { + // Declaring variables requires the `let` keyword. + let x = 5; + + println!("x has the value {x}"); +} |
