Adds rainbows over writers (inspired by lolcat)
Add the following to your Cargo.toml file
[dependencies]
rainbowcoat = "0.1"
extern crate rainbowcoat;
use std::io::Write;
fn main() {
write!(
&mut rainbowcoat::Colors::configure(
io::stdout(), 2.0, 0.4, 0.0
),
" _
( |
|
__,--./|.--,__
.` \ \ / / `.
.` \ | / `.
/ / ^|^ \ \
/ / | |o | \ \
/===/ | | | \===\
/___/ | |o | \___\
| | |
| |o |
| | |
| |o |
| | |
| |o |
|_____/\_____|
"
)
}
Doug Tangren (softprops) 2017