How to Create an Own Crate

I. develop the crate

Step 1: create the default crate

```bash mkdir lib-hello && cd lib-hello

this is Crate Root Path

cargo init --name hello_exercism --lib ```

Step 2: develop the crate source and test codes

II. use the crate 'hello_exercism'

Step 1: create the default Bin

```bash mkdir bin-hello && cd bin-hello

this is Bin Root Path

cargo init --name bin-hello --bin ```

Step 2: configure the file Cargo.toml

fn main () { println!("{}",helloexercism::hello()); asserteq!("Hello, World!", hello_exercism::hello()); } ```

Step 4: run the Bin program

III. create the crate 'hello_exercism' doc in local version

IV. create the crate 'hello_exercism' doc in server version