sj_crate 0.1.0

learn to publish
Documentation
//! # sj crate
//! 
//! \
//! `sj_crate` is a collection of utilities to make performing certain
//! calculations more convenient.

/// Add one to the number given.
///
/// # Example
///
/// ```
/// let arg = 5;
/// let answer = sj_crate::add_one(arg);
///
/// assert_eq!(6, answer);
/// ```
pub fn add_one(x: i32) -> i32 {
    x + 1
}

pub mod kinds;
pub mod utils;

pub use self::kinds::PrimaryColor;
pub use kinds::SecondaryColor;
pub use utils::mix;