17 lines
240 B
Rust
Raw Normal View History

2018-02-21 22:09:53 -08:00
// macros2.rs
//
// Execute `rustlings hint macros2` or use the `hint` watch subcommand for a
// hint.
2017-03-17 09:30:29 -05:00
// I AM NOT DONE
2017-03-17 09:30:29 -05:00
fn main() {
my_macro!();
}
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}