samir_practice 0.1.0

This is my first api library that is made for rust. It is a starting for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Adds one to the given number.
///
/// # Examples
///
/// ```
/// let arg = 5;
/// let answer = samir_practice::add_one(arg);
/// assert_eq!(6, answer);
/// ```
pub fn add_one(x: i32) -> i32 {
    println!("This is made by Mr Sameer Wagle");
    x+1
}