rustlings/exercises/21_macros/macros4.rs

16 lines
303 B
Rust
Raw Normal View History

2024-07-01 12:54:05 +03:00
// TODO: Fix the compiler error by adding one or two characters.
#[rustfmt::skip]
2017-03-17 17:47:45 +03:00
macro_rules! my_macro {
() => {
println!("Check out my macro!");
}
2017-03-17 17:47:45 +03:00
($val:expr) => {
println!("Look at this other macro: {}", $val);
}
2017-03-17 17:47:45 +03:00
}
fn main() {
my_macro!();
my_macro!(7777);
}