mirror of https://github.com/sunface/rust-course
15 lines
217 B
15 lines
217 B
3 years ago
|
// macros2.rs
|
||
|
// Make me compile! Execute `rustlings hint macros2` for hints :)
|
||
|
|
||
|
// I AM NOT DONE
|
||
|
|
||
|
fn main() {
|
||
|
my_macro!();
|
||
|
}
|
||
|
|
||
|
macro_rules! my_macro {
|
||
|
() => {
|
||
|
println!("Check out my macro!");
|
||
|
};
|
||
|
}
|