rustlings/exercises/macros/macros2.rs

18 lines
262 B
Rust

// macros2.rs
//
// Make me compile!
//
// If you need help, open the corresponding README.md or run: rustlings hint macros2
// I AM NOT DONE
fn main() {
my_macro!();
}
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}