dp_sample 0.1.0

This is a random package created in order to test cargo's capabilities
Documentation
1
2
3
4
5
6
7
8
use dp_sample::kinds::PrimaryColor;
use dp_sample::utils::mix;

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