rustlings/exercises/macros/macros3.rs

17 lines
335 B
Rust
Raw Permalink Normal View History

2018-02-22 00:09:53 -06:00
// macros3.rs
// Make me compile, without taking the macro out of the module!
2022-07-15 05:05:26 -05:00
// Execute `rustlings hint macros3` or use the `hint` watch subcommand for a hint.
2017-03-17 08:30:29 -06:00
mod macros {
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!");
};
}
}
fn main() {
my_macro!();
}