11 lines
150 B
Rust
Raw Permalink Normal View History

2025-04-15 12:21:11 -04:00
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
// TODO: Fix the macro call.
my_macro();
}