rustlings/exercises/macros/macros4.rs

17 lines
320 B
Rust
Raw Normal View History

2018-02-22 00:09:53 -06:00
// macros4.rs
2022-07-15 05:05:26 -05:00
// Execute `rustlings hint macros4` or use the `hint` watch subcommand for a hint.
2017-03-17 08:47:45 -06:00
macro_rules! my_macro {
() => {
println!("Check out my macro!");
2023-03-09 12:44:05 -06:00
};
2017-03-17 08:47:45 -06:00
($val:expr) => {
println!("Look at this other macro: {}", $val);
}
2017-03-17 08:47:45 -06:00
}
fn main() {
my_macro!();
my_macro!(7777);
}