akshitgautam42 3f1246caed Exercise 8
2023-11-11 20:14:21 +05:30

12 lines
185 B
Rust

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