blob: 788fc16a9241c63a2211d773d3eee4b4a55ed093 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// macros2.rs
//
// Execute `rustlings hint macros2` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
my_macro!();
}
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
|