This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
281 B
Rust

fn main() {
let number = "T-H-R-E-E"; // Don't change this line
println!("Spell a number: {}", number);
// TODO: Fix the compiler error by changing the line below without renaming the variable.
let number = 3;
println!("Number plus two is: {}", number + 2);
}