1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-03-10 05:43:48 -04:00
rustlings/exercises/21_macros/macros1.rs
2024-04-17 23:34:27 +02:00

9 lines
117 B
Rust

macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
my_macro();
}