Exercise 2 · Chapter: VariablesRequired+50 XP
Favorite Number
Create a variable called number that stores your favorite number, then print it.
Your output should be:
My favorite number is 7
rust
fn main() {
}
Output
Run your code to see the output here.