2024-02-27 20:29:30 +00:00

12 lines
197 B
Rust

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