diff options
Diffstat (limited to 'my_crate/src')
-rw-r--r-- | my_crate/src/lib.rs | 61 | ||||
-rw-r--r-- | my_crate/src/main.rs | 8 |
2 files changed, 69 insertions, 0 deletions
diff --git a/my_crate/src/lib.rs b/my_crate/src/lib.rs new file mode 100644 index 0000000..a6f0751 --- /dev/null +++ b/my_crate/src/lib.rs @@ -0,0 +1,61 @@ +////! # My crate +////! +////! `my_crate` is a collection of utilities to make performing certain +////! calculations more convenient. + +///// Adds one to number given. +///// +///// # Examples +///// +///// ``` +///// let arg = 5; +///// let answer = my_crate::add_one(arg); +///// +///// assert_eq!(6, answer); +///// ``` +//pub fn add_one(x: i32) -> i32 { +// x + 1 +//} + +//! # Art +//! +//! A library for modeling artistic concepts. + +pub use self::kinds::PrimaryColor; +pub use self::kinds::SecondaryColor; +pub use self::utils::mix; + +pub mod kinds { + /// The primary colors according to the RYB color model. + pub enum PrimaryColor { + Red, + Yellow, + Blue, + } + + /// The secondary colors according to the RYB color model. + pub enum SecondaryColor { + Orange, + Green, + Purple, + } +} + +pub mod utils { + use crate::kinds::*; + + /// Combines two primary colors in equal amounts to create + /// a secondary color. + pub fn mix(c1: PrimaryColor, c2: PrimaryColor) -> SecondaryColor { + // --snip-- + SecondaryColor::Orange + } +} + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} diff --git a/my_crate/src/main.rs b/my_crate/src/main.rs new file mode 100644 index 0000000..f7a50d3 --- /dev/null +++ b/my_crate/src/main.rs @@ -0,0 +1,8 @@ +use my_crate::PrimaryColor; +use my_crate::mix; + +fn main() { + let red = PrimaryColor::Red; + let yellow = PrimaryColor::Yellow; + mix(red, yellow); +} |