mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
6bb0b48b10
Did you mean this? I'm new to rust and this test passed right away, so unsure what the intention was.
19 lines
320 B
Rust
19 lines
320 B
Rust
// macros4.rs
|
|
// Make me compile! Execute `rustlings hint macros4` for hints :)
|
|
|
|
// I AM NOT DONE
|
|
|
|
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);
|
|
}
|