1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-04-27 12:22:47 +02:00
rustlings/exercises/variables/variables6.rs

8 lines
176 B
Rust
Raw Normal View History

// variables6.rs
// Execute `rustlings hint variables6` or use the `hint` watch subcommand for a hint.
2023-02-26 17:28:24 +01:00
const NUMBER: i32 = 3;
fn main() {
println!("Number {}", NUMBER);
}