rustlings/exercises/01_variables/variables6.rs

10 lines
182 B
Rust
Raw Normal View History

// variables6.rs
//
// Execute `rustlings hint variables6` or use the `hint` watch subcommand for a
// hint.
2024-01-31 18:09:11 +03:00
const NUMBER: i32 = 3;
fn main() {
println!("Number {}", NUMBER);
}