6 lines
126 B
Rust
6 lines
126 B
Rust
|
fn main() {
|
||
|
// The statements here will be executed when the compiled binary is called.
|
||
|
|
||
|
println!("Hello, world!");
|
||
|
}
|