| 1 | macro_rules! escape { |
|---|---|
| 2 | ($($inner:expr),*) => { |
| 3 | concat!("\x1B [", $($inner),*, "m") |
| 4 | }; |
| 5 | } |
| 6 |
Definitions
Learn Rust with the experts
Find out more
| 1 | macro_rules! escape { |
|---|---|
| 2 | ($($inner:expr),*) => { |
| 3 | concat!("\x1B [", $($inner),*, "m") |
| 4 | }; |
| 5 | } |
| 6 |