publish_test_ctst113 0.1.0

A publish test
Documentation
//! # Publish Test
//! 
//! This file is part of the publish_test crate.
//! It provides a simple function to print "Hello, world!" to the console. 

/// This is a simple Rust library that provides a function to print "Hello, world!" to the console.
/// # Example usage:
/// ```
/// use publish_test::print_hello;
/// print_hello();
/// ```
pub fn print_hello() {
    println!("Hello, world!");
}

pub mod kinds;

pub mod utils {
    use crate::kinds::*;

    pub fn mix(a: PrimaryColor, b: SecondaryColor) {
        println!("Mixing {:?} and {:?}", a, b);
    }
}