shyadd 0.1.0

This is a crate to add two nums thats it
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

pub mod ADD {

   ///This function add two number
   /// 
   /// # Examples 
   ///  ```
   /// lets pass two numbers
   /// let total = add(12,23);
   /// println!("{total}");
   /// 
   /// Output is 35

   pub fn add (a:i32 , b:i32) -> i32 {a+b}
   
}