The Rust Programming Language - GitHub Pages

println!("Hello, world!");} Save the file, and go back to your terminal window. On Linux or macOS,enterthefollowingcommands: $ rustc main.rs $ ./main Hello, world! In Windows, replace main with main.exe. Regardless of your oper-ating system, you should see the string Hello, world! print to the terminal. Ifyoudid, thencongratulations! ................
................