mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
15 lines
217 B
Rust
15 lines
217 B
Rust
// 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!");
|
|
};
|
|
}
|