exporting 0.1.0

A fun game where you guess what number the computer has chosen.
Documentation
//! # Art 
//! 
//!  A library for modeling artistic concepts

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

pub mod  kind {
    /// The primary color according to the RYB color model
    pub enum  PrimaryColor {
        Red,
        Yellow,
        Blue,
    }

    /// The secondary colors  according to the RYB color model.
    pub enum SecondaryColor {
        Orange,
        Green,
        Purple,
    }
}

pub mod utils {
    use crate::kind::*;

    /// Combine two primary colors in equal amount to create
    /// a secondary color.
    pub fn mix(c1: PrimaryColor, c2: PrimaryColor) -> SecondaryColor {
        SecondaryColor::Orange
    }
}