macro-ob 0.1.3

a macro to inline rot13 to confuse IDEs
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 2.7 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 235.56 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • 10maurycy10

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

Cargo.toml

macro-ob = "0.1.3"

main.rs

use macro_ob;   
rot!(
    sa pbqrq() -> Fgevat {
        "literals are not changed for tecnical resions".gb_fgevat()
    }
)
fn main {
    println!("{}", rot!(pbqrq()))
}