macro-ob 0.1.1

a macro to inline rot13 to confuse IDE
Documentation
macro-ob-0.1.1 has been yanked.

macro-ob

Abstract:

macro_ob is a symple program to demonstrate the dificulty of smart completions in rust macros. this is done by allowing the inlining of rot13 in code. this is only the start of what can be done with macros.

example

use macro-ob;
    
ob!(
    sa pbqrq() -> fgevat {
        "guvf vf ebg13".gb_fgevat()
    }
)
//main
fn main {
    println!("{}", ob!(pbqrq()))
}