2018-02-22 06:09:53 +00:00
|
|
|
// macros2.rs
|
2022-07-15 10:05:26 +00:00
|
|
|
// Execute `rustlings hint macros2` or use the `hint` watch subcommand for a hint.
|
2017-03-17 14:30:29 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2017-03-17 14:30:29 +00:00
|
|
|
fn main() {
|
|
|
|
my_macro!();
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! my_macro {
|
|
|
|
() => {
|
|
|
|
println!("Check out my macro!");
|
|
|
|
};
|
|
|
|
}
|