rustlings/exercises/variables/variables6.rs

11 lines
185 B
Rust
Raw Normal View History

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