blob: 73e9fc8de4b32cd6e743dce0090ee467e95cafc2 [file] [edit]
macro_rules ! say_hello {
() => {
println!("Hello!")
};
}
macro_rules /* comment */ ! say_goodbye {
() => {
println!("Goodbye!")
};
}
macro_rules // comment
! do_nothing {
() => {};
}
fn main() {
say_hello!();
say_goodbye!()
}