rustlings/exercises/macros/macros2.rs

14 lines
232 B
Rust
Raw Normal View History

2018-02-22 00:09:53 -06:00
// macros2.rs
2022-07-15 05:05:26 -05:00
// Execute `rustlings hint macros2` or use the `hint` watch subcommand for a hint.
2017-03-17 08:30:29 -06:00
fn main() {
my_macro!();
}
2023-03-09 12:44:05 -06:00
#[macro_export]
2017-03-17 08:30:29 -06:00
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}