rustlings-solutions/exercises/01_variables/variables6.rs

10 lines
181 B
Rust
Raw Permalink Normal View History

// variables6.rs
//
// Execute `rustlings hint variables6` or use the `hint` watch subcommand for a
// hint.
2023-09-10 16:38:07 +00:00
const NUMBER :u8 = 3;
fn main() {
println!("Number {}", NUMBER);
}