//! # Calchy
//!
//! `calchy` is a collection of utilities to make performing certain
//! calculations more convenient.
/// Adds two to the number given.
///
/// # Examples
///
/// ```
/// let arg = 5;
/// let answer = calchy::add_two(arg);
///
/// assert_eq!(7, answer);
/// ```