/ hello_world / README.md
README.md
1 # Hello World in Rust 2 3 This program prints the text "Hello World". 4 5 Here is the code 6 7 ```rust 8 fn main() { 9 println!("Hello World"); 10 } 11 ``` 12 13 ## OUTPUT 14 15 