learning_rust_art 0.1.1

Just some code snippets took from the Rust book.
Documentation
1
2
3
4
5
6
7
8
9
10
// use art::kinds::PrimaryColor;
// use art::utils::mix;

use learning_rust_art::{PrimaryColor, mix};

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