hello world rust

Solutions on MaxInterview for hello world rust by the best coders in the world

showing results for - "hello world rust"
Paola
08 Jun 2018
1// This is the main function
2fn main() {
3    // Statements here are executed when the compiled binary is called
4
5    // Print text to the console
6    println!("Hello World!");
7}
Nico
09 Sep 2018
1// This code is editable, feel free to hack it!
2// This is the main function
3fn main() {
4    // Statements here are executed when the compiled binary is called
5
6    // Print text to the console
7    println!("Hello World!");
8}