This repository has been archived on 2023-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
rustlings-exercises-completed/exercises/macros/macros2.rs
2023-03-24 21:18:51 +00:00

13 lines
231 B
Rust

// macros2.rs
// Execute `rustlings hint macros2` or use the `hint` watch subcommand for a hint.
#[macro_export]
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
my_macro!();
}