sui_rust_operator/
macro.rs

1#[macro_export]
2macro_rules! print_beauty {
3    () => {
4        println!();
5    };
6    ($s:expr) => {
7        utils::mark_with_style($s.to_string(), &utils::random_style());
8    };
9    ($format:expr$(,$arg:expr)*) => {
10        utils::mark_with_style(format!($format $(,$arg)*), &utils::random_style());
11    };
12}