1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-18 03:56:41 +02:00
2024-04-17 23:34:27 +02:00

15 lines
238 B
Rust

#[rustfmt::skip]
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);
}