Files
rustlings/exercises/01_variables/variables6.rs
T

7 lines
129 B
Rust
Raw Normal View History

2026-07-19 17:01:21 -07:00
// TODO: Change the line below to fix the compiler error.
const NUMBER: u8 = 3;
fn main() {
println!("Number: {NUMBER}");
}