antex 0.2.2

Styled text and tree in terminal
Documentation
1
2
3
4
5
6
7
8
//! # Hello world example

use antex::{StyledText, Text};

fn main() {
  let greeting = Text::auto().yellow().s("Hello").reset().s(' ').green().s("world").reset().s('!');
  println!("{}", greeting);
}