mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-29 15:19:19 +00:00
16 lines
242 B
Rust
16 lines
242 B
Rust
// macros2.rs
|
|
//
|
|
// 執行 `rustlings hint macros2` 或使用 `hint` watch 子命令來獲取提示。
|
|
|
|
// I AM NOT DONE
|
|
|
|
fn main() {
|
|
my_macro!();
|
|
}
|
|
|
|
macro_rules! my_macro {
|
|
() => {
|
|
println!("看看我的巨集!");
|
|
};
|
|
}
|