1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-26 04:22:03 +02:00

78 lines
515 B
Rust
Raw Normal View History

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