tsien-test 0.1.0

the test crate for tsien
Documentation
//! # Art
//!
//! A library for modeling artistic concepts.

pub mod kinds {
    pub enum PrimaryColor {
        Red,
        Yellow,
        Blue,
    }

    pub enum SecondaryColor {
        Orange,
        Green,
        Purple,
    }
}

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

    /// Combines two primary colors in equal amounts to create
    /// a secondary color.
    pub fn mix() -> SecondaryColor {
        SecondaryColor::Green
    }
}