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() { let s1 = String::from("Hello"); let s2 = String::from("World!"); let s3 = String::from("What a beautiful day!"); let result = format!("{} {} {}", s1, s2, s3); println!("{}", result); }
Hello World! What a beautiful day!