//! # Simple Bolt Crate
//!
//! This crate provides a simple function to add two numbers.
/// Adds the left number to the right number and returns the value
///
/// # Examples
/// ```
/// let answer = crate_test::add(arg, 2);
///
/// assert_eq!(3, answer);
/// ```