AFAIK there is currently no way to quote an operator such as `+` or `/`, and this would be useful to reduce code duplication. Something like: ``` rust macro_rules! foo( ($oper:op) => 10i $oper 20i ) fn main() { printfln!("%d", foo!(+)); printfln!("%d", foo!(*)); } ```