Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
fn main() { const BIRTHYEAR: i32 = 1980; const MINUTES_PER_HOUR: i32 = 60; println!("What is your birth year? {}", BIRTHYEAR); println!("How many minutes per hour? {}", MINUTES_PER_HOUR); }
What is your birth year? 1980
How many minutes per hour? 60