rust_book_code 0.2.1

The code of rust book
Documentation
1
2
3
4
5
6
7
pub fn hello_world() {
    println!("Hello, World!");
}

pub fn hello_cargo() {
    println!("Hello, Cargo!")
}