rustlings/exercises/21_macros/macros4.rs

20 lines
342 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// macros4.rs
//
// Execute `rustlings hint macros4` or use the `hint` watch subcommand for a
// hint.
2017-03-17 17:47:45 +03:00
#[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);
}