Files
anstyle/
macros.rs
1
macro_rules!
escape {
2
($(
$inner
:expr),
*
) => {
3
concat!
(
"\x1B["
, $(
$inner
),
*
,
"m"
)
4
};
5
}