pub mod my_crate;
pub use my_crate::arith_container::increment;
pub use my_crate::arith_container::decrement;
pub use my_crate::arith_container::square;
pub use my_crate::arith_container::double;
pub use my_crate::arith_container::half;
pub fn main(){
println!("Increment of 5 (5++) = {}", increment(5));
println!("Decrememt of 5 (5--) = {}", decrement(5));
println!("Square of 5 (5^2) = {}", square(5));
println!("Double of 5 (5*2) = {}", double(5));
println!("Half of 5 (5/2) = {}", half(5));
println!("{}", square(0));
}