rust_book_art 0.1.1

Crate from Chapter 14 Section 2 of the Rust book, demonstrating `pub use` and crate publishing.
Documentation
1
2
3
4
5
6
7
8
use rust_book_art::PrimaryColour;
use rust_book_art::mix;

fn main() {
    let red = PrimaryColour::Red;
    let orange = PrimaryColour::Yellow;
    mix(red, orange);
}