trpl-zh-cn/listings/ch20-advanced-features/no-listing-21-pancakes/pancakes/src/main.rs
2024-10-20 23:44:05 +08:00

10 lines
149 B
Rust

use hello_macro::HelloMacro;
use hello_macro_derive::HelloMacro;
#[derive(HelloMacro)]
struct Pancakes;
fn main() {
Pancakes::hello_macro();
}