2018-02-22 00:09:53 -06:00
|
|
|
// macros1.rs
|
2019-11-11 09:51:38 -06:00
|
|
|
// Make me compile! Execute `rustlings hint macros1` for hints :)
|
2017-03-17 09:30:29 -05:00
|
|
|
|
2019-11-11 06:38:24 -06:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2017-03-17 09:30:29 -05:00
|
|
|
macro_rules! my_macro {
|
|
|
|
() => {
|
|
|
|
println!("Check out my macro!");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
my_macro();
|
|
|
|
}
|