bogdan_art 0.1.0

A library for modeling artistic concepts.
Documentation
use bogdan_art::PrimaryColor;
use bogdan_art::mix;

fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;
    mix(red, yellow);
}