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}
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}