Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 228 Bytes

File metadata and controls

10 lines (8 loc) · 228 Bytes

src/main.rs

This is our program. We're creating a function called main that contains a call to the println! macro to print the string Hello, world! to stdout.

fn main() {
    println!("Hello, world!");
}