1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-10-19 01:18:09 +02:00
rustlings/exercises/macros/macros3.rs

18 lines
333 B
Rust
Raw Normal View History

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