Files
rustlings/exercises/01_variables/variables6.rs
T
2026-07-19 17:01:21 -07:00

7 lines
129 B
Rust

// TODO: Change the line below to fix the compiler error.
const NUMBER: u8 = 3;
fn main() {
println!("Number: {NUMBER}");
}