AlankuoRust 0.1.0

A Rust tutorials
Documentation
1
2
3
4
5
6
7
8
9
10
11

// use hello_world::kinds::PrimaryColor;
// use hello_world::utils::mix;
use AlankuoRust::mix;
use AlankuoRust::PrimaryColor;
fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;
    mix(red, yellow); 
}