mirror of
https://github.com/notohh/rustlings.git
synced 2024-12-23 11:48:09 -05:00
9bdb0a12e4
Hints are now accessible using the CLI subcommand `rustlings hint <exercise name`. BREAKING CHANGE: This fundamentally changes the way people interact with exercises.
16 lines
302 B
Rust
16 lines
302 B
Rust
// macros4.rs
|
|
// Make me compile! Execute `rustlings hint macros4` 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);
|
|
}
|