feat: new utils

This commit is contained in:
YK 2024-11-19 21:11:17 +03:00
parent 3070407092
commit 476332c7aa

View File

@ -3,3 +3,9 @@ pub macro inc {
include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/in/", $d, ".txt")) include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/in/", $d, ".txt"))
} }
} }
pub macro s {
($s: literal) => {
format!("{}", $s)
}
}