mirror of
https://github.com/notohh/rustlings.git
synced 2025-10-03 01:28:39 -04:00
right let's try this one again
This commit is contained in:
parent
850a13e913
commit
f7846af7ac
60 changed files with 130 additions and 939 deletions
exercises/variables
43
exercises/variables/variables3.rs
Executable file
43
exercises/variables/variables3.rs
Executable file
|
@ -0,0 +1,43 @@
|
|||
// variables3.rs
|
||||
// Make me compile! Scroll down for hints :)
|
||||
|
||||
fn main() {
|
||||
let x = 3;
|
||||
println!("Number {}", x);
|
||||
x = 5;
|
||||
println!("Number {}", x);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// In Rust, variable bindings are immutable by default. But here we're trying
|
||||
// to reassign a different value to x! There's a keyword we can use to make
|
||||
// a variable binding mutable instead.
|
Loading…
Add table
Add a link
Reference in a new issue