Tirth Patel 9c06d3e305 ewew
2024-06-19 21:53:31 -02:30

17 lines
224 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!();
}