rustlings/exercises/macros/macros3.rs

21 lines
342 B
Rust
Raw Normal View History

2018-02-22 06:09:53 +00:00
// macros3.rs
//
// Make me compile, without taking the macro out of the module!
//
// Execute `rustlings hint macros3` or use the `hint` watch subcommand for a
// hint.
2017-03-17 14:30:29 +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!();
}