2024-06-10 14:19:26 +08:00

11 lines
195 B
Rust

// variables6.rs
//
// 執行 `rustlings hint variables6` 或使用 `hint` watch 子命令來獲取提示。
// I AM NOT DONE
const NUMBER = 3;
fn main() {
println!("Number {}", NUMBER);
}