1
2
3
4
5
6
7
mod run;
use proc_macro::TokenStream;

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