mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-09 04:09:20 +00:00
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();
|
|
}
|