Kartheek, Gottipati c5a0b0316d solutions
2022-05-03 15:30:09 -04:00

13 lines
199 B
Rust

// macros1.rs
// Make me compile! Execute `rustlings hint macros1` for hints :)
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
my_macro!();
}