art-tutorial 0.1.1

A simple example of using the art crate.
Documentation
1
2
3
4
5
6
7
8
use art_tutorial::PrimaryColor;
use art_tutorial::mix;

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