1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-12-14 11:22:55 +02:00
rustlings/exercises/macros/macros4.rs

78 lines
515 B
Rust
Raw Normal View History

2018-02-22 08:09:53 +02:00
// macros4.rs
2017-03-17 16:47:45 +02: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 16:10:48 +02:00
// The way macros are written, it wants to see something between each
// "macro arm", so it can separate them.