documentation_comments 0.1.9

A fun game where you guess what nuber the computer chosen.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/* use documentation_comments::kinds::PrimaryColor;
use documentation_comments::utils::mix; */

// same as above since it is re-exported in lib.rs
use documentation_comments::mix;
use documentation_comments::PrimaryColor;

fn main() {
    let red = PrimaryColor::Red;
    let yellow= PrimaryColor::Yellow;
    mix(red, yellow);
}