z80_forth_derive 0.1.0

Derive macros for the z80_forth compiler
Documentation
1
2
3
4
5
6
7
8
9
10
use proc_macro::TokenStream;
use quote::quote;
use syn::{parse_macro_input, DeriveInput};


#[proc_macro_derive(FromTxt)]
pub fn from_txt_macro(input: TokenStream) -> TokenStream {
        let input = parse_macro_input!(input as DeriveInput);
        todo!();
}