lib_hello_world 0.1.1

A library that simply prints the Hello world greeting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# README

This is a simple Rust library that teaches you how to use third party
libraries in your code using the Cargo tool.

## Usage

This library exposes one public function. This function requires no arguments
and it simply prints `Hello world!` to the console.

Following is how to do it.

```rust
lib_hello_world::greet_hello_world();
```