mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 05:13:29 +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();
|
|
}
|