/* use documentation_comments::kinds::PrimaryColor;
use documentation_comments::utils::mix; */// same as above since it is re-exported in lib.rs
usedocumentation_comments::mix;usedocumentation_comments::PrimaryColor;fnmain(){let red =PrimaryColor::Red;let yellow=PrimaryColor::Yellow;mix(red, yellow);}