Stanislav Pankrashin bd72dd98d6 Revert "almost there"
This reverts commit a6c8169de1d4f62d272d42095b3909b00c5cbd91.
2022-06-23 17:05:31 +12:00

15 lines
217 B
Rust

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