mirror of
https://github.com/notohh/rustlings.git
synced 2025-10-08 11:38: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
45
exercises/variables/variables4.rs
Executable file
45
exercises/variables/variables4.rs
Executable file
|
@ -0,0 +1,45 @@
|
|||
// variables4.rs
|
||||
// Make me compile! Scroll down for hints :)
|
||||
|
||||
fn main() {
|
||||
let x: i32;
|
||||
println!("Number {}", x);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Oops! In this exercise, we have a variable binding that we've created on
|
||||
// line 5, and we're trying to use it on line 6, but we haven't given it a
|
||||
// value. We can't print out something that isn't there; try giving x a value!
|
||||
// This is an error that can cause bugs that's very easy to make in any
|
||||
// programming language -- thankfully the Rust compiler has caught this for us!
|
Loading…
Add table
Add a link
Reference in a new issue