sea_shell/
macro_helpers.rs

1#[macro_export]
2macro_rules! with_dollar_sign {
3  ($($body:tt)*) => {
4      macro_rules! __with_dollar_sign { $($body)* }
5      __with_dollar_sign!($);
6  }
7}
8
9pub use with_dollar_sign;