//! # Bryan's Rust Standard Library
//!
//! This library is a collection of utilities to make common taks more
//! convenient.
/// Add two numbers together.
///
/// # Examples
///
/// ```
/// let left = 1;
/// let right = 2;
/// let sum = brstd::add(left, right);
///
/// assert_eq!(sum, 3);
/// ```