rust_book_code 0.2.1

The code of rust book
Documentation
1
2
3
4
5
6
pub mod hello;

pub fn hello() {
    hello::hello_world();
    hello::hello_cargo();
}