chalk-plus 0.1.0

a simple chalk.js port to rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod text_styling;
use crate::text_styling::*;




#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_apply_color() {
       let mut chalk = Chalk::new();

        chalk.red("hello world").bold().underline().display();
    }
}