1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-03-21 21:27:30 +02:00

16 lines
303 B
Rust
Raw Normal View History

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