Austin Jones 9b1f6c3cb2
done
2022-01-19 16:26:28 -05:00

14 lines
200 B
Rust

// macros2.rs
// Make me compile! Execute `rustlings hint macros2` for hints :)
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
my_macro!();
}