hidmystr 0.1.0

Hide string at compile time and treat variable value as original at runtime
Documentation
1
2
3
4
5
6
7
Example:
```rust
fn main() {
    let greet: String = hidmystr::hidstr!("helloss, world!");
    println!("{greet}");
}
```