rustlings/solutions/21_macros/macros2.rs

11 lines
171 B
Rust
Raw Permalink Normal View History

2024-11-09 11:43:57 +00:00
// Moved the macro definition to be before its call.
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
}