push_test 0.1.0

A simple crate package test
Documentation
1
2
3
4
5
6
7
8
extern crate push_test;
use push_test::kinds::PrimaryColor;
use push_test::utils::mix;
fn main() {
let red = PrimaryColor::Red;
let yellow = PrimaryColor::Yellow;
mix(red, yellow);
}