1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-02-03 13:11:36 +02:00

10 lines
177 B
Rust

// variables6.rs
//
// Execute `rustlings hint variables6` or use the `hint` watch subcommand for a
// hint.
const NUMBER = 3;
fn main() {
println!("Number {}", NUMBER);
}