1 2 3 4 5 6 7
macro_rules! repeat { ($macro:ident $($name:ident $verb:tt )+) => { $( $macro!($name $verb); )+ }; }