Divide function

this is a demo rust library published on crates.io

to use this library you have to add following line in dependency section of cargo.toml

divide = "0.1.1"

your cargo.toml file should look like this: ``` [package] name = "assignment7q3lib" version = "0.1.0" authors = ["mazharjamil"] edition = "2018"

[dependencies] divide = "0.1.1" ```

In src/main.rs you can use like this:

use assignment_7_q3_lib::arithmetic::division; fn main() { println!("Hello, world!"); division::division_res(20.0,4.0); }

use assignment7q3lib::arithmetic::division::divisionres;

use firstwelcome::hello; fn main() { println!("Hello, world!"); division_res(20.0,4.0); }

now cargo run for results