hello_exercism

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

use the crate 'hello_exercism'

Step 1: configure the file Cargo.toml

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

Step 3: run the Bin program