Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/10maurycy10/macroob
A macro to inline rot13 to confuse IDEs
https://github.com/10maurycy10/macroob
Last synced: 2 months ago
JSON representation
A macro to inline rot13 to confuse IDEs
- Host: GitHub
- URL: https://github.com/10maurycy10/macroob
- Owner: 10maurycy10
- Created: 2020-11-10T17:02:49.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-10T17:41:54.000Z (about 4 years ago)
- Last Synced: 2024-10-28T13:55:58.449Z (3 months ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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()))
}