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