learn_publish 0.1.0

A useful tool to build web software (learn how to use crates.io)
Documentation
1
2
3
4
5
6
7
use learn_publish::{mix, PrimaryColor};

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