rustlings/exercises/macros/macros1.rs

13 lines
216 B
Rust
Raw Normal View History

2018-02-22 00:09:53 -06:00
// macros1.rs
2022-07-15 05:05:26 -05:00
// Execute `rustlings hint macros1` or use the `hint` watch subcommand for a hint.
2017-03-17 08:30:29 -06:00
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
2023-03-09 12:44:05 -06:00
my_macro!();
2017-03-17 08:30:29 -06:00
}