murasame 27976c2fb2 finish
Change-Id: I982b607976e26bf3bea46f726b381e67256cc47a
2023-05-25 20:02:41 +08:00

13 lines
216 B
Rust

// macros2.rs
// Execute `rustlings hint macros2` or use the `hint` watch subcommand for a hint.
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
my_macro!();
}