mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
65 lines
387 B
Rust
65 lines
387 B
Rust
// macros1.rs
|
|
// Make me compile! Scroll down for hints :)
|
|
|
|
macro_rules! my_macro {
|
|
() => {
|
|
println!("Check out my macro!");
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
my_macro();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// When you call a macro, you need to add something special compared to a
|
|
// regular function call. If you're stuck, take a look at what's inside
|
|
// `my_macro`.
|