2020-05-03 23:46:01 -07:00

15 lines
333 B
Rust

// macros1.rs
// Make me compile! Execute `rustlings hint macros1` for hints :)
// I am a rooky in metaprogramming
// strongly recommend to read and practice on https://danielkeep.github.io/tlborm/book/README.html
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
my_macro!();
}