2018-02-22 06:09:53 +00:00
|
|
|
// macros1.rs
|
2023-05-29 17:39:08 +00:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint macros1` 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
|
|
|
macro_rules! my_macro {
|
|
|
|
() => {
|
|
|
|
println!("Check out my macro!");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
my_macro();
|
|
|
|
}
|