test-rust2 0.1.0

just a test
Documentation
1
2
3
4
5
6
7
8
9
use test_rust2::kinds::PrimaryColor;
use test_rust2::utils::mix;

fn main() {
  let red = PrimaryColor::Red;
  let yellow = PrimaryColor::Yellow;
  let result = mix(red, yellow);
  println!("color={:?}", result);
}