2018-02-22 00:09:53 -06:00
|
|
|
// macros3.rs
|
2019-11-11 09:51:38 -06:00
|
|
|
// 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 09:30:29 -05:00
|
|
|
|
2019-11-11 06:38:24 -06:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2017-03-17 09:30:29 -05:00
|
|
|
mod macros {
|
|
|
|
macro_rules! my_macro {
|
|
|
|
() => {
|
|
|
|
println!("Check out my macro!");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
my_macro!();
|
|
|
|
}
|