first commit

This commit is contained in:
2024-04-02 21:29:02 -04:00
commit 51666b629c
5 changed files with 577 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
use proc_macro::TokenStream;
use syn::DeriveInput;
#[proc_macro_derive(PushPop)]
pub fn pushpop_derive_macro(item: TokenStream) -> TokenStream {
let _ast: DeriveInput = syn::parse(item).unwrap();
todo!()
}