rustlings/exercises/variables/variables1.rs

12 lines
293 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// variables1.rs
2021-04-24 20:15:34 +03:00
// Make me compile!
// Execute the command `rustlings hint variables1` if you want a hint :)
2015-09-17 03:19:24 +03:00
fn main() {
2022-05-28 03:04:58 +03:00
let x = 5;
// When using string formating the value needs to be assigned before it can
// be used, standard stuff.
2015-09-17 03:19:24 +03:00
println!("x has the value {}", x);
}