rust-book/pancakes/src/main.rs

10 lines
149 B
Rust
Raw Normal View History

2019-02-11 10:14:27 -05:00
use hello_macro::HelloMacro;
use hello_macro_derive::HelloMacro;
#[derive(HelloMacro)]
struct Pancakes;
fn main() {
Pancakes::hello_macro();
}