6 lines
102 B
Rust
Raw Normal View History

macro_rules! escape {
($($inner:expr),*) => {
concat!("\x1B[", $($inner),*, "m")
};
}