2018-02-22 06:09:53 +00:00
|
|
|
// macros3.rs
|
2023-05-29 17:39:08 +00:00
|
|
|
//
|
2019-11-11 15:51:38 +00:00
|
|
|
// Make me compile, without taking the macro out of the module!
|
2023-05-29 17:39:08 +00:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint macros3` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2017-03-17 14:30:29 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2017-03-17 14:30:29 +00:00
|
|
|
mod macros {
|
|
|
|
macro_rules! my_macro {
|
|
|
|
() => {
|
|
|
|
println!("Check out my macro!");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
my_macro!();
|
|
|
|
}
|