1 2 3 4 5 6 7 8 9
#[macro_export] macro_rules! s { ($e:literal) => {$e.to_owned()}; } #[macro_export] macro_rules! string { ($e:literal) => {$e.to_owned()}; }
1 2 3 4 5 6 7 8 9
#[macro_export] macro_rules! s { ($e:literal) => {$e.to_owned()}; } #[macro_export] macro_rules! string { ($e:literal) => {$e.to_owned()}; }