mod run; use proc_macro::TokenStream; #[proc_macro] pub fn i(i: TokenStream) -> TokenStream { run::exec(&i.to_string()).into() }