For example, this compiles: ``` rustc macro_rules! m { () => { 1; } } fn main() { println!("{}", m!()); // prints "1" } ```