1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-06-03 08:26:17 +02:00
rustlings/exercises/macros/macros4.rs

78 lines
515 B
Rust
Raw Normal View History

2018-02-22 07:09:53 +01:00
// macros4.rs
2017-03-17 15:47:45 +01:00
// Make me compile! Scroll down for hints :)
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);
}
// You only need to add a single character to make this compile.
2017-03-19 15:10:48 +01:00
// The way macros are written, it wants to see something between each
// "macro arm", so it can separate them.