Initial commit
This commit is contained in:
6
solutions/01_variables/variables1.rs
Normal file
6
solutions/01_variables/variables1.rs
Normal file
@@ -0,0 +1,6 @@
|
||||
fn main() {
|
||||
// Declaring variables requires the `let` keyword.
|
||||
let x = 5;
|
||||
|
||||
println!("x has the value {x}");
|
||||
}
|
||||
Reference in New Issue
Block a user