test_pub_create 0.1.1

this is a create just for test
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// use test_pub_create::kinds::PrimaryColor;
// use test_pub_create::kinds::SecondaryColor;
// use test_pub_create::utils::add_one;

use test_pub_create::PrimaryColor;
use test_pub_create::SecondaryColor;
use test_pub_create::add_one;

fn main() {
    let pc1 = PrimaryColor::Blue;
    let sc1 = SecondaryColor::Green;

    let x = 10;
    let y = add_one(x);
    println!("x = {}, y = {}", x, y);
}