chiark / gitweb /
adjust re node.js ishness
[talk-2019-ghm-rust.git] / macro-rules-example.txt
1 macro_rules! debug {
2     ($g:expr, $($rhs:tt)*) => {
3         (
4             if debugp!($g) { eprint!($($rhs)*); }
5         )
6     }
7 }