sj_crate 0.1.0

learn to publish
Documentation
1
2
3
4
5
6
7
8
9
// use sj_crate::kinds::PrimaryColor;
// use sj_crate::utils::mix;
use sj_crate::*;

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