rustlings/exercises/01_variables/variables3.rs

12 lines
221 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// variables3.rs
//
// Execute `rustlings hint variables3` or use the `hint` watch subcommand for a
// hint.
2015-09-17 03:19:24 +03:00
2015-09-17 03:19:24 +03:00
fn main() {
2024-01-31 18:09:11 +03:00
let x: i32; //giving it a type
x = 3; //assigning a value
2015-09-17 03:19:24 +03:00
println!("Number {}", x);
}