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

15 lines
216 B
Rust

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