summaryrefslogtreecommitdiff
path: root/my_crate/src/main.rs
blob: f7a50d3cc1d52984af9fd0046542dd1c5f166019 (plain)
1
2
3
4
5
6
7
8
use my_crate::PrimaryColor;
use my_crate::mix;

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