trpl-zh-cn/listings/ch19-advanced-features/listing-19-30/src/main.rs
2022-02-06 16:43:51 +08:00

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();
}