mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-04 04:28:04 +08:00
10 lines
149 B
Rust
10 lines
149 B
Rust
use hello_macro::HelloMacro;
|
|
use hello_macro_derive::HelloMacro;
|
|
|
|
#[derive(HelloMacro)]
|
|
struct Pancakes;
|
|
|
|
fn main() {
|
|
Pancakes::hello_macro();
|
|
}
|