mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-01 16:03:31 +02:00
15 lines
238 B
Rust
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);
|
|
}
|