rustchar 0.1.1

A fun game where you guess what number the computer has chosen.
Documentation
//! # My art
//! 
//! `atr` is a test lib crate,for modeling artistic concepts.
//! 

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


pub mod kinds {
    // The primary colors accodring to the RYB colr 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::kinds::*;

    //Combines two primary colors in equal amouts to create
    //a secondary color.
    pub fn mix(_c1: PrimaryColor,_c2: PrimaryColor) -> SecondaryColor {
        //
        let sec = SecondaryColor::Green;
        sec
    }
}

pub mod nepadd {
    pub fn add(d1: i32,d2:i32) -> i32 {
        let d3 = d1+d2;
        d3
    }
}