rustlings/exercises/21_macros/macros4.rs

20 lines
342 B
Rust
Raw Normal View History

2018-02-22 01:09:53 -05:00
// macros4.rs
//
// Execute `rustlings hint macros4` or use the `hint` watch subcommand for a
// hint.
2017-03-17 10:47:45 -04:00
#[rustfmt::skip]
2017-03-17 10:47:45 -04:00
macro_rules! my_macro {
() => {
println!("Check out my macro!");
}
2017-03-17 10:47:45 -04:00
($val:expr) => {
println!("Look at this other macro: {}", $val);
}
2017-03-17 10:47:45 -04:00
}
fn main() {
my_macro!();
my_macro!(7777);
}