1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-11-25 22:31:48 +02:00
Files
rustlings/exercises/22_macros/macros1.rs
2025-05-16 15:53:31 +02:00

11 lines
150 B
Rust

macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
// TODO: Fix the macro call.
my_macro();
}