mirror of
https://github.com/notohh/rustlings.git
synced 2025-10-08 19:48: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
42
exercises/variables/variables1.rs
Executable file
42
exercises/variables/variables1.rs
Executable file
|
@ -0,0 +1,42 @@
|
|||
// variables1.rs
|
||||
// Make me compile! Scroll down for hints :)
|
||||
|
||||
fn main() {
|
||||
x = 5;
|
||||
println!("x has the value {}", x);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Hint: The declaration on line 5 is missing a keyword that is needed in Rust
|
||||
// to create a new variable binding.
|
Loading…
Add table
Add a link
Reference in a new issue