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
|
|
|
|
|
|
|
macro_rules! my_macro {
|
|
|
|
() => {
|
|
|
|
println!("Check out my macro!");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2023-09-10 16:38:07 +00:00
|
|
|
my_macro!();
|
2017-03-17 14:30:29 +00:00
|
|
|
}
|