18 lines
261 B
Rust
18 lines
261 B
Rust
// macros1.rs
|
|
//
|
|
// Make me compile!
|
|
//
|
|
// If you need help, open the corresponding README.md or run: rustlings hint macros1
|
|
|
|
// I AM NOT DONE
|
|
|
|
macro_rules! my_macro {
|
|
() => {
|
|
println!("Check out my macro!");
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
my_macro();
|
|
}
|