rustlings/solutions/21_macros/macros3.rs

14 lines
212 B
Rust
Raw Permalink Normal View History

2024-11-09 11:43:57 +00:00
// Added the attribute `macro_use` attribute.
#[macro_use]
mod macros {
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
}
2024-10-28 20:46:17 +00:00
fn main() {
2024-11-09 11:43:57 +00:00
my_macro!();
2024-10-28 20:46:17 +00:00
}