2021-10-28 18:32:46 +08:00

18 lines
318 B
Rust

// macros4.rs
// Make me compile! Execute `rustlings hint macros4` for hints :)
#[macro_export]
macro_rules! my_macro {
() => {
println!("Check out my macro!");
}
($val:expr) => {
println!("Look at this other macro: {}", $val);
}
}
fn main() {
my_macro!();
my_macro!(7777);
}