summaryrefslogtreecommitdiff
path: root/exercises/21_macros/macros2.rs
blob: b7c37fd9cee39a25f452fcb0d93109ee784e4fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// macros2.rs
//
// Execute `rustlings hint macros2` or use the `hint` watch subcommand for a
// hint.

fn main() {
    my_macro!();
}

macro_rules! my_macro {
    () => {
        println!("Check out my macro!");
    };
}