chapter13_art 0.2.1

Chapter 14: Release a self-crate to crates.io
Documentation
1
2
3
4
5
6
7
8
use chapter13_art::PrimaryColor;
use chapter13_art::mix;

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