2024-06-18 19:42:33 +08:00

16 lines
241 B
Rust

// macros1.rs
//
// 執行 `rustlings hint macros1` 或使用 `hint` watch 子命令來獲取提示。
// I AM NOT DONE
macro_rules! my_macro {
() => {
println!("看看我的巨集!");
};
}
fn main() {
my_macro();
}