fn main() {
const BIRTHYEAR = 1980;
println!("What is your birth year? {}", BIRTHYEAR);
}
error: missing type for `const` item --> prog.rs:2:9 | 2 | const BIRTHYEAR = 1980; | ^^^^^^^^^ help: provide a type for the constant: `BIRTHYEAR: i32` error: aborting due to previous error