pealn 0.3.0

Intuitive way to print colored and styled text to console ,use predefined and RGB colors , use text styles , using ANSI #terminal #console #colors #text #print #pealn #win #windows #ansi
Documentation
#![allow(non_snake_case)]

use std::fmt;

#[allow(non_snake_case)]
pub struct PeaParsed {
     pub startIndex: usize,
     pub endIndex: usize,
     pub fullMatch: String, // Full match string
     pub modifier:String,
     pub value: String
}

impl fmt::Display for PeaParsed {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        // Customize the output as needed
        write!(f, "PeaParse value: {}", self.value)
    }
}