// macros1.rs
//
// Make me compile!
//
// If you need help, open the corresponding README.md or run: rustlings hint macros1

// I AM NOT DONE

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

fn main() {
    my_macro();
}