1//! Math Utils
2//!
3//! gives you all the tools to help you building math problems
4/// Adds one to a number that is specified in the arguments
5/// # Examples
6/// ```
7/// let x = 5;
8/// let y = crates::add_one(x);
9/// assert_eq!(y, 6);
10/// ```
11pub fn add_one(x: u32) -> u32 {
12 x + 1
13}