lib_hello_world 0.1.2

A library that simply prints the Hello world greeting
Documentation
1
2
3
4
5
pub mod greeter {
    pub fn greet_hello_world() {
        println!("Hello world!");
    }
}